[INFO] crate rust_tcp_ipc 0.2.6 is already in cache [INFO] extracting crate rust_tcp_ipc 0.2.6 into work/ex/clippy-test-run/sources/stable/reg/rust_tcp_ipc/0.2.6 [INFO] extracting crate rust_tcp_ipc 0.2.6 into work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/reg/rust_tcp_ipc/0.2.6 [INFO] validating manifest of rust_tcp_ipc-0.2.6 on toolchain stable [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of rust_tcp_ipc-0.2.6 on toolchain stable+rustflags=-Dclippy::into_iter_on_array [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing rust_tcp_ipc-0.2.6 [INFO] finished frobbing rust_tcp_ipc-0.2.6 [INFO] frobbed toml for rust_tcp_ipc-0.2.6 written to work/ex/clippy-test-run/sources/stable/reg/rust_tcp_ipc/0.2.6/Cargo.toml [INFO] started frobbing rust_tcp_ipc-0.2.6 [INFO] finished frobbing rust_tcp_ipc-0.2.6 [INFO] frobbed toml for rust_tcp_ipc-0.2.6 written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/reg/rust_tcp_ipc/0.2.6/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] linting rust_tcp_ipc-0.2.6 against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-0/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/reg/rust_tcp_ipc/0.2.6:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+stable" "clippy" "--frozen" "--all" "--all-targets"` [INFO] [stdout] f8075f58598e5eb09390b42e3485346534794e3d5a65153e930d8a212383b6e9 [INFO] running `"docker" "start" "-a" "f8075f58598e5eb09390b42e3485346534794e3d5a65153e930d8a212383b6e9"` [INFO] [stderr] Checking rust_tcp_ipc v0.2.6 (/opt/crater/workdir) [INFO] [stderr] warning: All variants have the same postfix: `Error` [INFO] [stderr] --> src/client.rs:36:1 [INFO] [stderr] | [INFO] [stderr] 36 | / enum ReadThreadErrorsInternal { [INFO] [stderr] 37 | | WriteError(std::io::Error), [INFO] [stderr] 38 | | ReadError(std::io::Error), [INFO] [stderr] 39 | | ImmediateMessageConstructError((P::Commands, Vec)), [INFO] [stderr] 40 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::enum_variant_names)] on by default [INFO] [stderr] = help: remove the postfixes and use full paths to the variants instead of glob imports [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names [INFO] [stderr] [INFO] [stderr] warning: All variants have the same postfix: `Error` [INFO] [stderr] --> src/client.rs:36:1 [INFO] [stderr] | [INFO] [stderr] 36 | / enum ReadThreadErrorsInternal { [INFO] [stderr] 37 | | WriteError(std::io::Error), [INFO] [stderr] 38 | | ReadError(std::io::Error), [INFO] [stderr] 39 | | ImmediateMessageConstructError((P::Commands, Vec)), [INFO] [stderr] 40 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::enum_variant_names)] on by default [INFO] [stderr] = help: remove the postfixes and use full paths to the variants instead of glob imports [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names [INFO] [stderr] [INFO] [stderr] warning: the function has a cyclomatic complexity of 26 [INFO] [stderr] --> src/client.rs:161:28 [INFO] [stderr] | [INFO] [stderr] 161 | std::thread::spawn(move || { [INFO] [stderr] | ____________________________^ [INFO] [stderr] 162 | | let mut protocol = ProtocolBuffer::

::new(); [INFO] [stderr] 163 | | let mut incoming_buffer = [0; BUFFER_SIZE]; [INFO] [stderr] 164 | | info!("Read thread started"); [INFO] [stderr] ... | [INFO] [stderr] 264 | | info!("Read thread finished"); [INFO] [stderr] 265 | | }); [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::cyclomatic_complexity)] on by default [INFO] [stderr] = help: you could split it up into multiple smaller functions [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cyclomatic_complexity [INFO] [stderr] [INFO] [stderr] warning: very complex type used. Consider factoring parts into `type` definitions [INFO] [stderr] --> src/protocol/mod.rs:196:10 [INFO] [stderr] | [INFO] [stderr] 196 | ) -> Result<(Self::Commands, usize), (ParseHeaderError, &Self::HeaderAsArray)> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::type_complexity)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity [INFO] [stderr] [INFO] [stderr] warning: the function has a cyclomatic complexity of 26 [INFO] [stderr] --> src/client.rs:161:28 [INFO] [stderr] | [INFO] [stderr] 161 | std::thread::spawn(move || { [INFO] [stderr] | ____________________________^ [INFO] [stderr] 162 | | let mut protocol = ProtocolBuffer::

::new(); [INFO] [stderr] 163 | | let mut incoming_buffer = [0; BUFFER_SIZE]; [INFO] [stderr] 164 | | info!("Read thread started"); [INFO] [stderr] ... | [INFO] [stderr] 264 | | info!("Read thread finished"); [INFO] [stderr] 265 | | }); [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::cyclomatic_complexity)] on by default [INFO] [stderr] = help: you could split it up into multiple smaller functions [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cyclomatic_complexity [INFO] [stderr] [INFO] [stderr] warning: very complex type used. Consider factoring parts into `type` definitions [INFO] [stderr] --> src/protocol/mod.rs:196:10 [INFO] [stderr] | [INFO] [stderr] 196 | ) -> Result<(Self::Commands, usize), (ParseHeaderError, &Self::HeaderAsArray)> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::type_complexity)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity [INFO] [stderr] [INFO] [stderr] error[E0063]: missing field `after_connect_wait_time_ms` in initializer of `rust_tcp_ipc::client::ClientConfig` [INFO] [stderr] --> examples/reasonable_example/main.rs:16:18 [INFO] [stderr] | [INFO] [stderr] 16 | let config = ClientConfig { [INFO] [stderr] | ^^^^^^^^^^^^ missing `after_connect_wait_time_ms` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0063`. [INFO] [stderr] error: Could not compile `rust_tcp_ipc`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f8075f58598e5eb09390b42e3485346534794e3d5a65153e930d8a212383b6e9"` [INFO] running `"docker" "rm" "-f" "f8075f58598e5eb09390b42e3485346534794e3d5a65153e930d8a212383b6e9"` [INFO] [stdout] f8075f58598e5eb09390b42e3485346534794e3d5a65153e930d8a212383b6e9