[INFO] crate lapin-futures-tls-internal 0.3.1 is already in cache [INFO] extracting crate lapin-futures-tls-internal 0.3.1 into work/ex/clippy-test-run/sources/stable/reg/lapin-futures-tls-internal/0.3.1 [INFO] extracting crate lapin-futures-tls-internal 0.3.1 into work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/reg/lapin-futures-tls-internal/0.3.1 [INFO] validating manifest of lapin-futures-tls-internal-0.3.1 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 lapin-futures-tls-internal-0.3.1 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 lapin-futures-tls-internal-0.3.1 [INFO] finished frobbing lapin-futures-tls-internal-0.3.1 [INFO] frobbed toml for lapin-futures-tls-internal-0.3.1 written to work/ex/clippy-test-run/sources/stable/reg/lapin-futures-tls-internal/0.3.1/Cargo.toml [INFO] started frobbing lapin-futures-tls-internal-0.3.1 [INFO] finished frobbing lapin-futures-tls-internal-0.3.1 [INFO] frobbed toml for lapin-futures-tls-internal-0.3.1 written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/reg/lapin-futures-tls-internal/0.3.1/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 lapin-futures-tls-internal-0.3.1 against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-2/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/reg/lapin-futures-tls-internal/0.3.1:/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] 8a5b7af16beb271b1e7f7a6d2989ed9f4c47e354d5ac42ecfa7ed5291a640b50 [INFO] running `"docker" "start" "-a" "8a5b7af16beb271b1e7f7a6d2989ed9f4c47e354d5ac42ecfa7ed5291a640b50"` [INFO] [stderr] Compiling amq-protocol-types v1.1.0 [INFO] [stderr] Checking sasl v0.4.3 [INFO] [stderr] Compiling handlebars v1.1.0 [INFO] [stderr] Checking trust-dns-proto v0.6.3 [INFO] [stderr] Checking amq-protocol-codegen v1.1.0 [INFO] [stderr] Checking trust-dns-resolver v0.10.3 [INFO] [stderr] Compiling amq-protocol v1.1.0 [INFO] [stderr] Checking lapin-async v0.15.0 [INFO] [stderr] Checking lapin-futures v0.15.0 [INFO] [stderr] Checking lapin-futures-tls-internal v0.3.1 (/opt/crater/workdir) [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/error.rs:79:17 [INFO] [stderr] | [INFO] [stderr] 79 | Error { inner: inner } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `inner` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::redundant_field_names)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/error.rs:79:17 [INFO] [stderr] | [INFO] [stderr] 79 | Error { inner: inner } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `inner` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::redundant_field_names)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: large size difference between variants [INFO] [stderr] --> src/error.rs:35:5 [INFO] [stderr] | [INFO] [stderr] 35 | ProtocolError(#[fail(cause)] lapin_futures::error::Error), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::large_enum_variant)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant [INFO] [stderr] help: consider boxing the large fields to reduce the total size of the enum [INFO] [stderr] | [INFO] [stderr] 35 | ProtocolError(#[fail(cause)] Box), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: large size difference between variants [INFO] [stderr] --> src/error.rs:35:5 [INFO] [stderr] | [INFO] [stderr] 35 | ProtocolError(#[fail(cause)] lapin_futures::error::Error), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::large_enum_variant)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant [INFO] [stderr] help: consider boxing the large fields to reduce the total size of the enum [INFO] [stderr] | [INFO] [stderr] 35 | ProtocolError(#[fail(cause)] Box), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 13s [INFO] running `"docker" "inspect" "8a5b7af16beb271b1e7f7a6d2989ed9f4c47e354d5ac42ecfa7ed5291a640b50"` [INFO] running `"docker" "rm" "-f" "8a5b7af16beb271b1e7f7a6d2989ed9f4c47e354d5ac42ecfa7ed5291a640b50"` [INFO] [stdout] 8a5b7af16beb271b1e7f7a6d2989ed9f4c47e354d5ac42ecfa7ed5291a640b50