[INFO] updating cached repository https://github.com/Nefanator/starshine-rs
[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] ec2b8bb2dd6f0482510c98c630156dea0b39f0e1
[INFO] checking Nefanator/starshine-rs against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FNefanator%2Fstarshine-rs" "/workspace/builds/worker-7/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-7/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/Nefanator/starshine-rs on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/Nefanator/starshine-rs
[INFO] finished tweaking git repo https://github.com/Nefanator/starshine-rs
[INFO] tweaked toml for git repo https://github.com/Nefanator/starshine-rs written to /workspace/builds/worker-7/source/Cargo.toml
[INFO] crate git repo https://github.com/Nefanator/starshine-rs already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] 3d177fa861af8954f524498411499c431c7c06122014c3af9cef94dff89bd42c
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `"docker" "start" "-a" "3d177fa861af8954f524498411499c431c7c06122014c3af9cef94dff89bd42c"`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Checking starshine v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unused variable: `command`
[INFO] [stderr]   --> src/lib.rs:19:12
[INFO] [stderr]    |
[INFO] [stderr] 19 | pub fn run(command: &Command) -> Result<(), &str> {
[INFO] [stderr]    |            ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_command`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_variables)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `command`
[INFO] [stderr]   --> src/lib.rs:19:12
[INFO] [stderr]    |
[INFO] [stderr] 19 | pub fn run(command: &Command) -> Result<(), &str> {
[INFO] [stderr]    |            ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_command`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_variables)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 0 arguments but 1 argument was supplied
[INFO] [stderr]  --> tests/integration_tests.rs:5:38
[INFO] [stderr]   |
[INFO] [stderr] 5 |     let add_user_args: Vec<String> = String::new("Starshine.exe add Nathan").split_whitespace().collect();
[INFO] [stderr]   |                                      ^^^^^^^^^^^ -------------------------- supplied 1 argument
[INFO] [stderr]   |                                      |
[INFO] [stderr]   |                                      expected 0 arguments
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 0 arguments but 1 argument was supplied
[INFO] [stderr]  --> tests/integration_tests.rs:6:40
[INFO] [stderr]   |
[INFO] [stderr] 6 |     let check_user_args: Vec<String> = String::new("Starshine.exe check Nathan").split_whitespace().collect();
[INFO] [stderr]   |                                        ^^^^^^^^^^^ ---------------------------- supplied 1 argument
[INFO] [stderr]   |                                        |
[INFO] [stderr]   |                                        expected 0 arguments
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: a value of type `std::vec::Vec<std::string::String>` cannot be built from an iterator over elements of type `&str`
[INFO] [stderr]  --> tests/integration_tests.rs:5:97
[INFO] [stderr]   |
[INFO] [stderr] 5 |     let add_user_args: Vec<String> = String::new("Starshine.exe add Nathan").split_whitespace().collect();
[INFO] [stderr]   |                                                                                                 ^^^^^^^ value of type `std::vec::Vec<std::string::String>` cannot be built from `std::iter::Iterator<Item=&str>`
[INFO] [stderr]   |
[INFO] [stderr]   = help: the trait `std::iter::FromIterator<&str>` is not implemented for `std::vec::Vec<std::string::String>`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: a value of type `std::vec::Vec<std::string::String>` cannot be built from an iterator over elements of type `&str`
[INFO] [stderr]  --> tests/integration_tests.rs:6:101
[INFO] [stderr]   |
[INFO] [stderr] 6 |     let check_user_args: Vec<String> = String::new("Starshine.exe check Nathan").split_whitespace().collect();
[INFO] [stderr]   |                                                                                                     ^^^^^^^ value of type `std::vec::Vec<std::string::String>` cannot be built from `std::iter::Iterator<Item=&str>`
[INFO] [stderr]   |
[INFO] [stderr]   = help: the trait `std::iter::FromIterator<&str>` is not implemented for `std::vec::Vec<std::string::String>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 4 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0061, E0277.
[INFO] [stderr] For more information about an error, try `rustc --explain E0061`.
[INFO] [stderr] error: could not compile `starshine`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "3d177fa861af8954f524498411499c431c7c06122014c3af9cef94dff89bd42c"`
[INFO] running `"docker" "rm" "-f" "3d177fa861af8954f524498411499c431c7c06122014c3af9cef94dff89bd42c"`
[INFO] [stdout] 3d177fa861af8954f524498411499c431c7c06122014c3af9cef94dff89bd42c
