[INFO] updating cached repository Undin/rust-leaflet-features [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/Undin/rust-leaflet-features [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/Undin/rust-leaflet-features" "work/ex/clippy-test-run/sources/stable/gh/Undin/rust-leaflet-features"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/Undin/rust-leaflet-features'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/Undin/rust-leaflet-features" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Undin/rust-leaflet-features"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Undin/rust-leaflet-features'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 75b35ff51889e5776b3cbbf85937043c5cca8780 [INFO] sha for GitHub repo Undin/rust-leaflet-features: 75b35ff51889e5776b3cbbf85937043c5cca8780 [INFO] validating manifest of Undin/rust-leaflet-features 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 Undin/rust-leaflet-features 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 Undin/rust-leaflet-features [INFO] finished frobbing Undin/rust-leaflet-features [INFO] frobbed toml for Undin/rust-leaflet-features written to work/ex/clippy-test-run/sources/stable/gh/Undin/rust-leaflet-features/Cargo.toml [INFO] started frobbing Undin/rust-leaflet-features [INFO] finished frobbing Undin/rust-leaflet-features [INFO] frobbed toml for Undin/rust-leaflet-features written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Undin/rust-leaflet-features/Cargo.toml [INFO] crate Undin/rust-leaflet-features 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 Undin/rust-leaflet-features 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/Undin/rust-leaflet-features:/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] bee8af06d4bc2b22b4dc80f6a0ddb564dd4b74e20206edb510a3e168543718c3 [INFO] running `"docker" "start" "-a" "bee8af06d4bc2b22b4dc80f6a0ddb564dd4b74e20206edb510a3e168543718c3"` [INFO] [stderr] Compiling diesel_derives v1.3.0 [INFO] [stderr] Checking diesel v1.3.3 [INFO] [stderr] Checking rust-leaflet-features v0.1.0 (/opt/crater/workdir) [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Arc` [INFO] [stderr] --> examples/quick_fixes.rs:5:19 [INFO] [stderr] | [INFO] [stderr] 5 | let counter = Arc::new(Mutex::new(0)); [INFO] [stderr] | ^^^ use of undeclared type or module `Arc` [INFO] [stderr] [INFO] [stderr] error[E0046]: not all trait items implemented, missing: `from` [INFO] [stderr] --> examples/quick_fixes.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | impl From<(i32, i32)> for Point { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `from` in implementation [INFO] [stderr] | [INFO] [stderr] = note: `from` from trait: `fn(T) -> Self` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors occurred: E0046, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0046`. [INFO] [stderr] error: Could not compile `rust-leaflet-features`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0601]: `main` function not found in crate `completion` [INFO] [stderr] | [INFO] [stderr] = note: consider adding a `main` function to `examples/completion.rs` [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> examples/debug.rs:4:9 [INFO] [stderr] | [INFO] [stderr] 4 | let mut v = parse_users(" [INFO] [stderr] | ----^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_mut)] on by default [INFO] [stderr] [INFO] [stderr] warning: you seem to be trying to use match for destructuring a single pattern. Consider using `if let` [INFO] [stderr] --> examples/debug.rs:14:9 [INFO] [stderr] | [INFO] [stderr] 14 | / match s.parse() { [INFO] [stderr] 15 | | Ok(user) => v.push(user), [INFO] [stderr] 16 | | Err(_) => {} [INFO] [stderr] 17 | | } [INFO] [stderr] | |_________^ help: try this: `if let Ok(user) = s.parse() { v.push(user) }` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::single_match)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match [INFO] [stderr] [INFO] [stderr] error[E0609]: no field `ma` on type `std::str::Lines<'_>` [INFO] [stderr] --> examples/completion.rs:3:15 [INFO] [stderr] | [INFO] [stderr] 3 | s.lines().ma [INFO] [stderr] | ^^ unknown field [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors occurred: E0601, E0609. [INFO] [stderr] For more information about an error, try `rustc --explain E0601`. [INFO] [stderr] error: Could not compile `rust-leaflet-features`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0601]: `main` function not found in crate `tests` [INFO] [stderr] | [INFO] [stderr] = note: consider adding a `main` function to `examples/tests.rs` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0601`. [INFO] [stderr] error: Could not compile `rust-leaflet-features`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: cannot find type `table` in this scope [INFO] [stderr] --> <::diesel::macros::table_body macros>:165:33 [INFO] [stderr] | [INFO] [stderr] 165 | derive ( Debug , Clone , Copy , QueryId ) ] /// The actual table struct [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = note: #[warn(proc_macro_derive_resolution_fallback)] on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `table` in this scope [INFO] [stderr] --> <::diesel::macros::table_body macros>:165:33 [INFO] [stderr] | [INFO] [stderr] 165 | derive ( Debug , Clone , Copy , QueryId ) ] /// The actual table struct [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `user_id` in this scope [INFO] [stderr] --> <::diesel::macros::__diesel_column macros>:5:33 [INFO] [stderr] | [INFO] [stderr] 5 | derive ( Debug , Clone , Copy , QueryId , Default ) ] pub struct $ column_name [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `post_id` in this scope [INFO] [stderr] --> <::diesel::macros::__diesel_column macros>:5:33 [INFO] [stderr] | [INFO] [stderr] 5 | derive ( Debug , Clone , Copy , QueryId , Default ) ] pub struct $ column_name [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `favorited` in this scope [INFO] [stderr] --> <::diesel::macros::__diesel_column macros>:5:33 [INFO] [stderr] | [INFO] [stderr] 5 | derive ( Debug , Clone , Copy , QueryId , Default ) ] pub struct $ column_name [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "bee8af06d4bc2b22b4dc80f6a0ddb564dd4b74e20206edb510a3e168543718c3"` [INFO] running `"docker" "rm" "-f" "bee8af06d4bc2b22b4dc80f6a0ddb564dd4b74e20206edb510a3e168543718c3"` [INFO] [stdout] bee8af06d4bc2b22b4dc80f6a0ddb564dd4b74e20206edb510a3e168543718c3