[INFO] cloning repository https://github.com/Eros/Rustixel [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/Eros/Rustixel" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FEros%2FRustixel"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FEros%2FRustixel'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] e02080a6f1ca5fd7d5497ac2b8e755c56bbb5477 [INFO] checking Eros/Rustixel against try#ea663bba38739867a4b75ac820991b4f5d093c3b for pr-62262-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FEros%2FRustixel" "/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/Eros/Rustixel on toolchain ea663bba38739867a4b75ac820991b4f5d093c3b [INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/Eros/Rustixel [INFO] finished tweaking git repo https://github.com/Eros/Rustixel [INFO] tweaked toml for git repo https://github.com/Eros/Rustixel written to /workspace/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/Eros/Rustixel already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "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" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "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] a9e8713d5da5bf4188868a1976f8e6caa2bb2cd8492073e760f9c54b5763a071 [INFO] running `"docker" "start" "-a" "a9e8713d5da5bf4188868a1976f8e6caa2bb2cd8492073e760f9c54b5763a071"` [INFO] [stderr] Compiling openssl-sys v0.9.42 [INFO] [stderr] Checking serde-transcode v1.1.0 [INFO] [stderr] Checking serde_json v1.0.39 [INFO] [stderr] Checking parking_lot_core v0.4.0 [INFO] [stderr] Checking tokio-threadpool v0.1.12 [INFO] [stderr] Checking serde_urlencoded v0.5.4 [INFO] [stderr] Checking parking_lot v0.7.1 [INFO] [stderr] Compiling openssl v0.10.19 [INFO] [stderr] Compiling native-tls v0.2.2 [INFO] [stderr] Checking tokio-reactor v0.1.9 [INFO] [stderr] Checking tokio-tcp v0.1.3 [INFO] [stderr] Checking tokio v0.1.17 [INFO] [stderr] Checking hyper v0.12.25 [INFO] [stderr] Checking hyper-tls v0.3.1 [INFO] [stderr] Checking reqwest v0.9.11 [INFO] [stderr] Checking Rustixel v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `std::string::ToString` [INFO] [stderr] --> src/main.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use std::string::ToString; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0601]: `main` function not found in crate `Rustixel` [INFO] [stderr] --> src/main.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | / extern crate reqwest; [INFO] [stderr] 2 | | use std::collections::HashMap; [INFO] [stderr] 3 | | use std::string::ToString; [INFO] [stderr] 4 | | [INFO] [stderr] ... | [INFO] [stderr] 32 | | [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ consider adding a `main` function to `src/main.rs` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::string::String: reqwest::into_url::PolyfillTryInto` is not satisfied [INFO] [stderr] --> src/main.rs:20:58 [INFO] [stderr] | [INFO] [stderr] 20 | let mut resp: HashMap = reqwest::get(String::from(request_url)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `reqwest::into_url::PolyfillTryInto` is not implemented for `std::string::String` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/reqwest-0.9.11/src/lib.rs:300:15 [INFO] [stderr] | [INFO] [stderr] 300 | pub fn get(url: T) -> ::Result { [INFO] [stderr] | ------- required by this bound in `reqwest::get` [INFO] [stderr] | [INFO] [stderr] = help: the following implementations were found: [INFO] [stderr] <&'a std::string::String as reqwest::into_url::PolyfillTryInto> [INFO] [stderr] = note: required because of the requirements on the impl of `reqwest::IntoUrl` for `std::string::String` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `test_data` in this scope [INFO] [stderr] --> src/main.rs:30:5 [INFO] [stderr] | [INFO] [stderr] 30 | test_data = send_request("player", "43db704e-10b1-40b3-a38d-ce059de35a59"); [INFO] [stderr] | ^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `test_data` in this scope [INFO] [stderr] --> src/main.rs:31:22 [INFO] [stderr] | [INFO] [stderr] 31 | println!("{:#}", test_data); [INFO] [stderr] | ^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::string::ToString` [INFO] [stderr] --> src/main.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use std::string::ToString; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/main.rs:28:33 [INFO] [stderr] | [INFO] [stderr] 28 | pub fn test() -> Result<(), Box> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn std::error::Error` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::string::String: reqwest::into_url::PolyfillTryInto` is not satisfied [INFO] [stderr] --> src/main.rs:20:58 [INFO] [stderr] | [INFO] [stderr] 20 | let mut resp: HashMap = reqwest::get(String::from(request_url)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `reqwest::into_url::PolyfillTryInto` is not implemented for `std::string::String` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/reqwest-0.9.11/src/lib.rs:300:15 [INFO] [stderr] | [INFO] [stderr] 300 | pub fn get(url: T) -> ::Result { [INFO] [stderr] | ------- required by this bound in `reqwest::get` [INFO] [stderr] | [INFO] [stderr] = help: the following implementations were found: [INFO] [stderr] <&'a std::string::String as reqwest::into_url::PolyfillTryInto> [INFO] [stderr] = note: required because of the requirements on the impl of `reqwest::IntoUrl` for `std::string::String` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:20:45 [INFO] [stderr] | [INFO] [stderr] 20 | let mut resp: HashMap = reqwest::get(String::from(request_url)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `std::collections::HashMap`, found enum `std::result::Result` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::collections::HashMap` [INFO] [stderr] found type `std::result::Result` [INFO] [stderr] [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0601. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:20:45 [INFO] [stderr] | [INFO] [stderr] 20 | let mut resp: HashMap = reqwest::get(String::from(request_url)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `std::collections::HashMap`, found enum `std::result::Result` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::collections::HashMap` [INFO] [stderr] found type `std::result::Result` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:28:18 [INFO] [stderr] | [INFO] [stderr] 28 | pub fn test() -> Result<(), Box> { [INFO] [stderr] | ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `std::result::Result`, found () [INFO] [stderr] | | [INFO] [stderr] | implicitly returns `()` as its body has no tail or `return` expression [INFO] [stderr] ... [INFO] [stderr] 31 | println!("{:#}", test_data); [INFO] [stderr] | - help: consider removing this semicolon [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::result::Result<(), std::boxed::Box<(dyn std::error::Error + 'static)>>` [INFO] [stderr] found type `()` [INFO] [stderr] [INFO] [stderr] error: aborting due to 5 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0425. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `Rustixel`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `Rustixel`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "a9e8713d5da5bf4188868a1976f8e6caa2bb2cd8492073e760f9c54b5763a071"` [INFO] running `"docker" "rm" "-f" "a9e8713d5da5bf4188868a1976f8e6caa2bb2cd8492073e760f9c54b5763a071"` [INFO] [stdout] a9e8713d5da5bf4188868a1976f8e6caa2bb2cd8492073e760f9c54b5763a071