[INFO] updating cached repository https://github.com/joshterrill/github-export [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] e1bd33b9a3ab2703aa028828356f6bd40b9e061e [INFO] checking joshterrill/github-export against master#30ca215b4e38b32aa7abdd635c5e2d56f5724494 for pr-66037 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjoshterrill%2Fgithub-export" "/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/joshterrill/github-export on toolchain 30ca215b4e38b32aa7abdd635c5e2d56f5724494 [INFO] running `"/workspace/cargo-home/bin/cargo" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/joshterrill/github-export [INFO] finished tweaking git repo https://github.com/joshterrill/github-export [INFO] tweaked toml for git repo https://github.com/joshterrill/github-export written to /workspace/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/joshterrill/github-export already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "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" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "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] 4f0b47fb5af96c2cb0e209a964b9f5d9525e227807148f79f4e90cfb9bdbe41c [INFO] running `"docker" "start" "-a" "4f0b47fb5af96c2cb0e209a964b9f5d9525e227807148f79f4e90cfb9bdbe41c"` [INFO] [stderr] Compiling memoffset v0.5.3 [INFO] [stderr] Compiling parking_lot_core v0.6.2 [INFO] [stderr] Compiling parking_lot v0.9.0 [INFO] [stderr] Compiling hyper v0.12.35 [INFO] [stderr] Compiling syn v0.15.44 [INFO] [stderr] Checking native-tls v0.2.3 [INFO] [stderr] Checking toml v0.4.10 [INFO] [stderr] Checking cookie_store v0.7.0 [INFO] [stderr] Checking crossbeam-epoch v0.8.0 [INFO] [stderr] Checking crossbeam-deque v0.7.2 [INFO] [stderr] Checking tokio-reactor v0.1.10 [INFO] [stderr] Checking tokio-threadpool v0.1.16 [INFO] [stderr] Checking tokio-tcp v0.1.3 [INFO] [stderr] Checking tokio v0.1.22 [INFO] [stderr] Compiling devise_core v0.2.0 [INFO] [stderr] Compiling pear_codegen v0.1.2 [INFO] [stderr] Compiling devise_codegen v0.2.0 [INFO] [stderr] Checking hyper-tls v0.3.2 [INFO] [stderr] Compiling devise v0.2.0 [INFO] [stderr] Checking reqwest v0.9.22 [INFO] [stderr] Compiling pear v0.1.2 [INFO] [stderr] Checking rocket_http v0.4.2 [INFO] [stderr] Compiling rocket_codegen v0.4.2 [INFO] [stderr] Checking rocket v0.4.2 [INFO] [stderr] Checking rocket_contrib v0.4.2 [INFO] [stderr] Checking github-export v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `Json` [INFO] [stderr] --> src/endpoints.rs:2:28 [INFO] [stderr] | [INFO] [stderr] 2 | use rocket_contrib::json::{Json, JsonValue}; [INFO] [stderr] | ^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `Json` [INFO] [stderr] --> src/endpoints.rs:2:28 [INFO] [stderr] | [INFO] [stderr] 2 | use rocket_contrib::json::{Json, JsonValue}; [INFO] [stderr] | ^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/endpoints.rs:49:30 [INFO] [stderr] | [INFO] [stderr] 49 | Error { message: err.description().to_owned() } [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0716]: temporary value dropped while borrowed [INFO] [stderr] --> src/endpoints.rs:13:23 [INFO] [stderr] | [INFO] [stderr] 11 | fn get<'a, T>(url: &str) -> Result where T:Deserialize<'a> { [INFO] [stderr] | -- lifetime `'a` defined here [INFO] [stderr] 12 | let resp = reqwest::get(url)?.text()?; [INFO] [stderr] 13 | Ok(from_str::(&resp.to_owned())?) [INFO] [stderr] | ---------------^^^^^^^^^^^^^^^- [INFO] [stderr] | | | [INFO] [stderr] | | creates a temporary which is freed while still in use [INFO] [stderr] | argument requires that borrow lasts for `'a` [INFO] [stderr] 14 | } [INFO] [stderr] | - temporary value is freed at the end of this statement [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0716`. [INFO] [stderr] error: could not compile `github-export`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/endpoints.rs:49:30 [INFO] [stderr] | [INFO] [stderr] 49 | Error { message: err.description().to_owned() } [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0716]: temporary value dropped while borrowed [INFO] [stderr] --> src/endpoints.rs:13:23 [INFO] [stderr] | [INFO] [stderr] 11 | fn get<'a, T>(url: &str) -> Result where T:Deserialize<'a> { [INFO] [stderr] | -- lifetime `'a` defined here [INFO] [stderr] 12 | let resp = reqwest::get(url)?.text()?; [INFO] [stderr] 13 | Ok(from_str::(&resp.to_owned())?) [INFO] [stderr] | ---------------^^^^^^^^^^^^^^^- [INFO] [stderr] | | | [INFO] [stderr] | | creates a temporary which is freed while still in use [INFO] [stderr] | argument requires that borrow lasts for `'a` [INFO] [stderr] 14 | } [INFO] [stderr] | - temporary value is freed at the end of this statement [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0716`. [INFO] [stderr] error: could not compile `github-export`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "4f0b47fb5af96c2cb0e209a964b9f5d9525e227807148f79f4e90cfb9bdbe41c"` [INFO] running `"docker" "rm" "-f" "4f0b47fb5af96c2cb0e209a964b9f5d9525e227807148f79f4e90cfb9bdbe41c"` [INFO] [stdout] 4f0b47fb5af96c2cb0e209a964b9f5d9525e227807148f79f4e90cfb9bdbe41c