[INFO] updating cached repository https://github.com/u2/leetcode-rust [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 23722bdf01b8f3a080af49de576ff52ccbc1c27a [INFO] checking u2/leetcode-rust against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fu2%2Fleetcode-rust" "/workspace/builds/worker-2/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/u2/leetcode-rust on toolchain e4dba30b9b475d8750370c4dfb49b6541990904d [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/u2/leetcode-rust [INFO] finished tweaking git repo https://github.com/u2/leetcode-rust [INFO] tweaked toml for git repo https://github.com/u2/leetcode-rust written to /workspace/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/u2/leetcode-rust already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] c2eeb713aded0acd2e875e73a8bfb447cce057a18b031364264e044a801fd705 [INFO] running `"docker" "start" "-a" "c2eeb713aded0acd2e875e73a8bfb447cce057a18b031364264e044a801fd705"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Checking libc v0.2.20 [INFO] [stderr] Checking utf8-ranges v1.0.0 [INFO] [stderr] Checking regex-syntax v0.4.0 [INFO] [stderr] Checking unreachable v0.1.1 [INFO] [stderr] Checking thread-id v3.0.0 [INFO] [stderr] Checking memchr v1.0.1 [INFO] [stderr] Checking thread_local v0.3.2 [INFO] [stderr] Checking aho-corasick v0.6.1 [INFO] [stderr] Checking regex v0.2.1 [INFO] [stderr] Checking leetcode v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:7:20 [INFO] [stderr] | [INFO] [stderr] 7 | let array: Vec<(char)> = s.char_indices().map(|i| i.1).collect::>(); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:8:25 [INFO] [stderr] | [INFO] [stderr] 8 | let mut c: VecDeque<(char)> = VecDeque::with_capacity(s.char_indices().count()); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:39:20 [INFO] [stderr] | [INFO] [stderr] 39 | let array: Vec<(char)> = s.char_indices().map(|i| i.1).collect::>(); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:7:20 [INFO] [stderr] | [INFO] [stderr] 7 | let array: Vec<(char)> = s.char_indices().map(|i| i.1).collect::>(); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:8:25 [INFO] [stderr] | [INFO] [stderr] 8 | let mut c: VecDeque<(char)> = VecDeque::with_capacity(s.char_indices().count()); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/length_of_longest_substring.rs:39:20 [INFO] [stderr] | [INFO] [stderr] 39 | let array: Vec<(char)> = s.char_indices().map(|i| i.1).collect::>(); [INFO] [stderr] | ^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unused arithmetic operation that must be used [INFO] [stderr] --> src/find_median_sorted_arrays.rs:42:13 [INFO] [stderr] | [INFO] [stderr] 42 | j - 1; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] [INFO] [stderr] warning: 4 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused arithmetic operation that must be used [INFO] [stderr] --> src/find_median_sorted_arrays.rs:42:13 [INFO] [stderr] | [INFO] [stderr] 42 | j - 1; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] [INFO] [stderr] warning: 4 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 5.57s [INFO] running `"docker" "inspect" "c2eeb713aded0acd2e875e73a8bfb447cce057a18b031364264e044a801fd705"` [INFO] running `"docker" "rm" "-f" "c2eeb713aded0acd2e875e73a8bfb447cce057a18b031364264e044a801fd705"` [INFO] [stdout] c2eeb713aded0acd2e875e73a8bfb447cce057a18b031364264e044a801fd705