[INFO] updating cached repository JILeXanDR/rust_web_rest_api_server [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/JILeXanDR/rust_web_rest_api_server [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/JILeXanDR/rust_web_rest_api_server" "work/ex/clippy-test-run/sources/stable/gh/JILeXanDR/rust_web_rest_api_server"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/JILeXanDR/rust_web_rest_api_server'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/JILeXanDR/rust_web_rest_api_server" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/JILeXanDR/rust_web_rest_api_server"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/JILeXanDR/rust_web_rest_api_server'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 9f24a238c69875730c671197ded0ccd437bc06a6 [INFO] sha for GitHub repo JILeXanDR/rust_web_rest_api_server: 9f24a238c69875730c671197ded0ccd437bc06a6 [INFO] validating manifest of JILeXanDR/rust_web_rest_api_server 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 JILeXanDR/rust_web_rest_api_server 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 JILeXanDR/rust_web_rest_api_server [INFO] finished frobbing JILeXanDR/rust_web_rest_api_server [INFO] frobbed toml for JILeXanDR/rust_web_rest_api_server written to work/ex/clippy-test-run/sources/stable/gh/JILeXanDR/rust_web_rest_api_server/Cargo.toml [INFO] started frobbing JILeXanDR/rust_web_rest_api_server [INFO] finished frobbing JILeXanDR/rust_web_rest_api_server [INFO] frobbed toml for JILeXanDR/rust_web_rest_api_server written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/JILeXanDR/rust_web_rest_api_server/Cargo.toml [INFO] crate JILeXanDR/rust_web_rest_api_server 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 JILeXanDR/rust_web_rest_api_server against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-3/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/JILeXanDR/rust_web_rest_api_server:/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] 43a2b253d9a1bd5c40aa9aae925bb670d07be4fe60f4db1830596dfdc5e76314 [INFO] running `"docker" "start" "-a" "43a2b253d9a1bd5c40aa9aae925bb670d07be4fe60f4db1830596dfdc5e76314"` [INFO] [stderr] Checking cookie v0.2.5 [INFO] [stderr] Checking hyper v0.9.13 [INFO] [stderr] Checking iron v0.4.0 [INFO] [stderr] Checking router v0.4.0 [INFO] [stderr] Checking rest_api v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead [INFO] [stderr] --> src/main.rs:17:13 [INFO] [stderr] | [INFO] [stderr] 17 | let ref query = req.extensions.get::().unwrap().find("query").unwrap_or("/"); [INFO] [stderr] | ----^^^^^^^^^------------------------------------------------------------------------ help: try: `let query = &req.extensions.get::().unwrap().find("query").unwrap_or("/");` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::toplevel_ref_arg)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg [INFO] [stderr] [INFO] [stderr] warning: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead [INFO] [stderr] --> src/main.rs:17:13 [INFO] [stderr] | [INFO] [stderr] 17 | let ref query = req.extensions.get::().unwrap().find("query").unwrap_or("/"); [INFO] [stderr] | ----^^^^^^^^^------------------------------------------------------------------------ help: try: `let query = &req.extensions.get::().unwrap().find("query").unwrap_or("/");` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::toplevel_ref_arg)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 11.97s [INFO] running `"docker" "inspect" "43a2b253d9a1bd5c40aa9aae925bb670d07be4fe60f4db1830596dfdc5e76314"` [INFO] running `"docker" "rm" "-f" "43a2b253d9a1bd5c40aa9aae925bb670d07be4fe60f4db1830596dfdc5e76314"` [INFO] [stdout] 43a2b253d9a1bd5c40aa9aae925bb670d07be4fe60f4db1830596dfdc5e76314