[INFO] updating cached repository Shynd/owo-bot [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/Shynd/owo-bot [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/Shynd/owo-bot" "work/ex/clippy-test-run/sources/stable/gh/Shynd/owo-bot"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/Shynd/owo-bot'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/Shynd/owo-bot" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Shynd/owo-bot"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Shynd/owo-bot'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] acd9478b9a29ca225372df765a9de5338ea7f17c [INFO] sha for GitHub repo Shynd/owo-bot: acd9478b9a29ca225372df765a9de5338ea7f17c [INFO] validating manifest of Shynd/owo-bot 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 Shynd/owo-bot 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 Shynd/owo-bot [INFO] finished frobbing Shynd/owo-bot [INFO] frobbed toml for Shynd/owo-bot written to work/ex/clippy-test-run/sources/stable/gh/Shynd/owo-bot/Cargo.toml [INFO] started frobbing Shynd/owo-bot [INFO] finished frobbing Shynd/owo-bot [INFO] frobbed toml for Shynd/owo-bot written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/Shynd/owo-bot/Cargo.toml [INFO] crate Shynd/owo-bot 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 Shynd/owo-bot against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-4/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/Shynd/owo-bot:/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] e29631e1f19308bd2f1f218805605b87310abbe0f215030be688a1d02fee86b9 [INFO] running `"docker" "start" "-a" "e29631e1f19308bd2f1f218805605b87310abbe0f215030be688a1d02fee86b9"` [INFO] [stderr] Checking kankyo v0.1.1 [INFO] [stderr] Compiling miniz-sys v0.1.10 [INFO] [stderr] Compiling proc-macro2 v0.3.2 [INFO] [stderr] Checking chrono v0.4.1 [INFO] [stderr] Checking regex v0.2.10 [INFO] [stderr] Checking hyper v0.10.13 [INFO] [stderr] Compiling mime_guess v1.8.4 [INFO] [stderr] Compiling quote v0.5.1 [INFO] [stderr] Compiling syn v0.13.1 [INFO] [stderr] Checking flate2 v1.0.1 [INFO] [stderr] Checking env_logger v0.4.3 [INFO] [stderr] Checking evzht9h3nznqzwl v0.0.3 [INFO] [stderr] Checking hyper-native-tls v0.2.4 [INFO] [stderr] Checking multipart v0.13.6 [INFO] [stderr] Compiling serde_derive_internals v0.23.0 [INFO] [stderr] Compiling serde_derive v1.0.37 [INFO] [stderr] Checking serenity v0.5.1 [INFO] [stderr] Checking owo-bot v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: you seem to be trying to match on a boolean expression [INFO] [stderr] --> src/commands/owner.rs:16:16 [INFO] [stderr] | [INFO] [stderr] 16 | let link = match args.is_empty() { [INFO] [stderr] | ________________^ [INFO] [stderr] 17 | | true => "./avatar.png", [INFO] [stderr] 18 | | false => args.full() [INFO] [stderr] 19 | | }; [INFO] [stderr] | |_____^ help: consider using an if/else expression: `if args.is_empty() { "./avatar.png" } else { args.full() }` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::match_bool)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_bool [INFO] [stderr] [INFO] [stderr] warning: you seem to be trying to match on a boolean expression [INFO] [stderr] --> src/commands/owner.rs:16:16 [INFO] [stderr] | [INFO] [stderr] 16 | let link = match args.is_empty() { [INFO] [stderr] | ________________^ [INFO] [stderr] 17 | | true => "./avatar.png", [INFO] [stderr] 18 | | false => args.full() [INFO] [stderr] 19 | | }; [INFO] [stderr] | |_____^ help: consider using an if/else expression: `if args.is_empty() { "./avatar.png" } else { args.full() }` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::match_bool)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_bool [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 54.36s [INFO] running `"docker" "inspect" "e29631e1f19308bd2f1f218805605b87310abbe0f215030be688a1d02fee86b9"` [INFO] running `"docker" "rm" "-f" "e29631e1f19308bd2f1f218805605b87310abbe0f215030be688a1d02fee86b9"` [INFO] [stdout] e29631e1f19308bd2f1f218805605b87310abbe0f215030be688a1d02fee86b9