[INFO] cloning repository https://github.com/vorot93/boinc-ipc-manager-rs [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/vorot93/boinc-ipc-manager-rs" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvorot93%2Fboinc-ipc-manager-rs"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvorot93%2Fboinc-ipc-manager-rs'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 7bbc08bbf407f12b6b5d861a70fb47967008677a [INFO] testing vorot93/boinc-ipc-manager-rs against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvorot93%2Fboinc-ipc-manager-rs" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/vorot93/boinc-ipc-manager-rs on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/vorot93/boinc-ipc-manager-rs [INFO] finished tweaking git repo https://github.com/vorot93/boinc-ipc-manager-rs [INFO] tweaked toml for git repo https://github.com/vorot93/boinc-ipc-manager-rs written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/vorot93/boinc-ipc-manager-rs already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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=warn" "-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" "+beta-2020-06-03" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 1d9345a2acb5ab05e84720c1f538c61bd27d35dfa498950c6730eb0b9e199265 [INFO] running `"docker" "start" "-a" "1d9345a2acb5ab05e84720c1f538c61bd27d35dfa498950c6730eb0b9e199265"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling quote v0.3.12 [INFO] [stderr] Compiling dtoa v0.4.0 [INFO] [stderr] Compiling num-traits v0.1.36 [INFO] [stderr] Compiling serde v0.9.5 [INFO] [stderr] Compiling itoa v0.3.0 [INFO] [stderr] Compiling log v0.3.6 [INFO] [stderr] Compiling argparse v0.2.1 [INFO] [stderr] Compiling serde_xml v0.9.1 [INFO] [stderr] Compiling syn v0.11.4 [INFO] [stderr] Compiling serde_codegen_internals v0.12.1 [INFO] [stderr] Compiling serde_derive v0.9.5 [INFO] [stderr] Compiling serde_json v0.9.3 [INFO] [stderr] Compiling boinc-ipc-manager v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/main.rs:117:27 [INFO] [stderr] | [INFO] [stderr] 117 | return Ok(try!(serde_json::from_str(&buf))); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/main.rs:145:19 [INFO] [stderr] | [INFO] [stderr] 145 | let rsp = try!(self.stream.do_request(&ToolRequest { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/main.rs:174:12 [INFO] [stderr] | [INFO] [stderr] 174 | Ok(try!(serde_xml::from_str(&payload))) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `serde::de::Deserialize` [INFO] [stderr] --> src/main.rs:13:5 [INFO] [stderr] | [INFO] [stderr] 13 | use serde::de::Deserialize; [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:129:17 [INFO] [stderr] | [INFO] [stderr] 129 | out_cb: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&MessageData)` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/main.rs:133:35 [INFO] [stderr] | [INFO] [stderr] 133 | fn new(stream: S, out_cb: Box) -> ToolManager { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(&MessageData)` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `serde_json::Value: serde::de::Deserialize` is not satisfied [INFO] [stderr] --> src/main.rs:174:17 [INFO] [stderr] | [INFO] [stderr] 174 | Ok(try!(serde_xml::from_str(&payload))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ the trait `serde::de::Deserialize` is not implemented for `serde_json::Value` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/serde_xml-0.9.1/src/de/mod.rs:887:14 [INFO] [stderr] | [INFO] [stderr] 887 | where T: de::Deserialize, [INFO] [stderr] | --------------- required by this bound in `serde_xml::from_str` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `serde::de::Deserialize` for `std::option::Option` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 6 warnings emitted [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `boinc-ipc-manager`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "1d9345a2acb5ab05e84720c1f538c61bd27d35dfa498950c6730eb0b9e199265"` [INFO] running `"docker" "rm" "-f" "1d9345a2acb5ab05e84720c1f538c61bd27d35dfa498950c6730eb0b9e199265"` [INFO] [stdout] 1d9345a2acb5ab05e84720c1f538c61bd27d35dfa498950c6730eb0b9e199265