[INFO] updating cached repository https://github.com/orhanbalci/rosalind-rs [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/mnt/big/crater/work/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] 2d527848f151bb1689a4970467b7b1994bb85c78 [INFO] checking orhanbalci/rosalind-rs against master#fe6d05a8b32f5c66c427ca524dbcce5a7145f87e for pr-64327 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Forhanbalci%2Frosalind-rs" "work/builds/worker-7/source"` [INFO] [stderr] Cloning into 'work/builds/worker-7/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/orhanbalci/rosalind-rs on toolchain fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/orhanbalci/rosalind-rs [INFO] finished tweaking git repo https://github.com/orhanbalci/rosalind-rs [INFO] tweaked toml for git repo https://github.com/orhanbalci/rosalind-rs written to work/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/orhanbalci/rosalind-rs already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] warning: file found to be present in multiple build targets: /mnt/big/crater/work/builds/worker-7/source/src/long.rs [INFO] [stderr] error: the lock file /mnt/big/crater/work/builds/worker-7/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] the lockfile is outdated, regenerating it [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] warning: file found to be present in multiple build targets: /mnt/big/crater/work/builds/worker-7/source/src/long.rs [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/mnt/big/crater/work/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/mnt/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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" "+fe6d05a8b32f5c66c427ca524dbcce5a7145f87e-alt" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] df87cce1617c79d2e18c7d5bdae5423c5bd2c36e8729d4a37a2ea3e6ed4019c9 [INFO] running `"docker" "start" "-a" "df87cce1617c79d2e18c7d5bdae5423c5bd2c36e8729d4a37a2ea3e6ed4019c9"` [INFO] [stderr] warning: file found to be present in multiple build targets: /opt/rustwide/workdir/src/long.rs [INFO] [stderr] Checking suffix v1.1.0 [INFO] [stderr] Checking rosalind v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/tran.rs:34:9 [INFO] [stderr] | [INFO] [stderr] 34 | let mut raw_lines: Vec<&str> = file_contents.split("\r\n").collect(); [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: unused variable: `index` [INFO] [stderr] --> src/lgis.rs:59:73 [INFO] [stderr] | [INFO] [stderr] 59 | ... .max_by_key(|&(index, &elem)| elem) [INFO] [stderr] | ^^^^^ help: consider prefixing with an underscore: `_index` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `i` [INFO] [stderr] --> src/lgis.rs:32:9 [INFO] [stderr] | [INFO] [stderr] 32 | for i in 0..sequence.len() { [INFO] [stderr] | ^ help: consider prefixing with an underscore: `_i` [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 1 parameter was supplied [INFO] [stderr] --> src/long.rs:19:27 [INFO] [stderr] | [INFO] [stderr] 19 | let sorted_vertices = toposort(&overlap_graph); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/long.rs:24:69 [INFO] [stderr] | [INFO] [stderr] 24 | ... .map(|&x| overlap_graph.node_weight(x).unwrap()) [INFO] [stderr] | ^ expected struct `petgraph::prelude::NodeIndex`, found struct `std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = note: expected type `petgraph::prelude::NodeIndex` [INFO] [stderr] found type `std::vec::Vec<_>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: Could not compile `rosalind`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0061]: this function takes 2 parameters but 1 parameter was supplied [INFO] [stderr] --> src/long.rs:19:27 [INFO] [stderr] | [INFO] [stderr] 19 | let sorted_vertices = toposort(&overlap_graph); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/long.rs:24:69 [INFO] [stderr] | [INFO] [stderr] 24 | ... .map(|&x| overlap_graph.node_weight(x).unwrap()) [INFO] [stderr] | ^ expected struct `petgraph::prelude::NodeIndex`, found struct `std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = note: expected type `petgraph::prelude::NodeIndex` [INFO] [stderr] found type `std::vec::Vec<_>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: Could not compile `rosalind`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0061]: this function takes 2 parameters but 1 parameter was supplied [INFO] [stderr] --> src/long.rs:19:27 [INFO] [stderr] | [INFO] [stderr] 19 | let sorted_vertices = toposort(&overlap_graph); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/long.rs:24:69 [INFO] [stderr] | [INFO] [stderr] 24 | ... .map(|&x| overlap_graph.node_weight(x).unwrap()) [INFO] [stderr] | ^ expected struct `petgraph::prelude::NodeIndex`, found struct `std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = note: expected type `petgraph::prelude::NodeIndex` [INFO] [stderr] found type `std::vec::Vec<_>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: Could not compile `rosalind`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "df87cce1617c79d2e18c7d5bdae5423c5bd2c36e8729d4a37a2ea3e6ed4019c9"` [INFO] running `"docker" "rm" "-f" "df87cce1617c79d2e18c7d5bdae5423c5bd2c36e8729d4a37a2ea3e6ed4019c9"` [INFO] [stdout] df87cce1617c79d2e18c7d5bdae5423c5bd2c36e8729d4a37a2ea3e6ed4019c9