[INFO] updating cached repository izumariu/dftools [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/izumariu/dftools [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/izumariu/dftools" "work/ex/clippy-test-run/sources/stable/gh/izumariu/dftools"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/izumariu/dftools'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/izumariu/dftools" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/izumariu/dftools"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/izumariu/dftools'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 368714ff0a7924dca75314c3abc5f5d8ee4a9618 [INFO] sha for GitHub repo izumariu/dftools: 368714ff0a7924dca75314c3abc5f5d8ee4a9618 [INFO] validating manifest of izumariu/dftools 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 izumariu/dftools 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 izumariu/dftools [INFO] finished frobbing izumariu/dftools [INFO] frobbed toml for izumariu/dftools written to work/ex/clippy-test-run/sources/stable/gh/izumariu/dftools/Cargo.toml [INFO] started frobbing izumariu/dftools [INFO] finished frobbing izumariu/dftools [INFO] frobbed toml for izumariu/dftools written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/izumariu/dftools/Cargo.toml [INFO] crate izumariu/dftools has a lockfile. skipping [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 izumariu/dftools against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-7/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/izumariu/dftools:/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] e923c30888d27d30813473f71bca56ffa3629c40dda79fcd59845bbd6c6b7094 [INFO] running `"docker" "start" "-a" "e923c30888d27d30813473f71bca56ffa3629c40dda79fcd59845bbd6c6b7094"` [INFO] [stderr] Compiling bzip2-sys v0.1.7 [INFO] [stderr] Compiling crc32fast v1.0.3 [INFO] [stderr] Checking tokio-reactor v0.1.7 [INFO] [stderr] Checking tokio-tcp v0.1.2 [INFO] [stderr] Checking tokio-udp v0.1.3 [INFO] [stderr] Checking tokio-uds v0.2.4 [INFO] [stderr] Checking bzip2 v0.3.3 [INFO] [stderr] Checking zip v0.5.0 [INFO] [stderr] Checking tokio v0.1.13 [INFO] [stderr] Checking hyper v0.12.16 [INFO] [stderr] Checking hyper-tls v0.3.1 [INFO] [stderr] Checking reqwest v0.9.5 [INFO] [stderr] Checking dftools v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: returning the result of a let binding from a block. Consider returning the expression directly. [INFO] [stderr] --> src/main.rs:110:5 [INFO] [stderr] | [INFO] [stderr] 110 | body [INFO] [stderr] | ^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::let_and_return)] on by default [INFO] [stderr] note: this expression can be directly returned [INFO] [stderr] --> src/main.rs:106:16 [INFO] [stderr] | [INFO] [stderr] 106 | let body = reqwest::get(format!("https://dl.dafont.com/dl/?f={}", &urlname).as_str()) [INFO] [stderr] | ________________^ [INFO] [stderr] 107 | | .expect(&format!("FAIL#performGet @ GET {}", &urlname)) [INFO] [stderr] 108 | | .text() [INFO] [stderr] 109 | | .expect(&format!("FAIL#extractBody @ GET {}", &urlname)); [INFO] [stderr] | |________________________________________________________________^ [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::string::String: std::io::Read` is not satisfied [INFO] [stderr] --> src/main.rs:17:18 [INFO] [stderr] | [INFO] [stderr] 17 | let br = BufReader::new(the_zip); [INFO] [stderr] | ^^^^^^^^^^^^^^ the trait `std::io::Read` is not implemented for `std::string::String` [INFO] [stderr] | [INFO] [stderr] = note: required by `>::new` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] warning: returning the result of a let binding from a block. Consider returning the expression directly. [INFO] [stderr] --> src/main.rs:110:5 [INFO] [stderr] | [INFO] [stderr] 110 | body [INFO] [stderr] | ^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::let_and_return)] on by default [INFO] [stderr] note: this expression can be directly returned [INFO] [stderr] --> src/main.rs:106:16 [INFO] [stderr] | [INFO] [stderr] 106 | let body = reqwest::get(format!("https://dl.dafont.com/dl/?f={}", &urlname).as_str()) [INFO] [stderr] | ________________^ [INFO] [stderr] 107 | | .expect(&format!("FAIL#performGet @ GET {}", &urlname)) [INFO] [stderr] 108 | | .text() [INFO] [stderr] 109 | | .expect(&format!("FAIL#extractBody @ GET {}", &urlname)); [INFO] [stderr] | |________________________________________________________________^ [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return [INFO] [stderr] [INFO] [stderr] error: Could not compile `dftools`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0277]: the trait bound `std::string::String: std::io::Read` is not satisfied [INFO] [stderr] --> src/main.rs:17:18 [INFO] [stderr] | [INFO] [stderr] 17 | let br = BufReader::new(the_zip); [INFO] [stderr] | ^^^^^^^^^^^^^^ the trait `std::io::Read` is not implemented for `std::string::String` [INFO] [stderr] | [INFO] [stderr] = note: required by `>::new` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: Could not compile `dftools`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "e923c30888d27d30813473f71bca56ffa3629c40dda79fcd59845bbd6c6b7094"` [INFO] running `"docker" "rm" "-f" "e923c30888d27d30813473f71bca56ffa3629c40dda79fcd59845bbd6c6b7094"` [INFO] [stdout] e923c30888d27d30813473f71bca56ffa3629c40dda79fcd59845bbd6c6b7094