[INFO] crate fast_uaparser 1.0.0 is already in cache [INFO] checking fast_uaparser-1.0.0 against master#30ca215b4e38b32aa7abdd635c5e2d56f5724494 for pr-66037 [INFO] extracting crate fast_uaparser 1.0.0 into /workspace/builds/worker-6/source [INFO] validating manifest of crates.io crate fast_uaparser 1.0.0 on toolchain 30ca215b4e38b32aa7abdd635c5e2d56f5724494 [INFO] running `"/workspace/cargo-home/bin/cargo" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate fast_uaparser 1.0.0 [INFO] finished tweaking crates.io crate fast_uaparser 1.0.0 [INFO] tweaked toml for crates.io crate fast_uaparser 1.0.0 written to /workspace/builds/worker-6/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"/workspace/cargo-home/bin/cargo" "+30ca215b4e38b32aa7abdd635c5e2d56f5724494" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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] dc4294443357b5d4a537fbd7d4845833045f2ae821318d8bfd658ef7880757d1 [INFO] running `"docker" "start" "-a" "dc4294443357b5d4a537fbd7d4845833045f2ae821318d8bfd658ef7880757d1"` [INFO] [stderr] Compiling bytes v0.5.3 [INFO] [stderr] Compiling futures-core v0.3.1 [INFO] [stderr] Compiling pin-project-lite v0.1.2 [INFO] [stderr] Compiling futures-sink v0.3.1 [INFO] [stderr] Compiling futures-task v0.3.1 [INFO] [stderr] Compiling tower-service v0.3.0 [INFO] [stderr] Compiling linked-hash-map v0.5.2 [INFO] [stderr] Compiling bit-vec v0.5.1 [INFO] [stderr] Compiling base64 v0.11.0 [INFO] [stderr] Compiling want v0.3.0 [INFO] [stderr] Compiling syn v1.0.13 [INFO] [stderr] Compiling serde_urlencoded v0.6.1 [INFO] [stderr] Checking fancy-regex-fork-pb v0.1.1 [INFO] [stderr] Compiling yaml-rust v0.4.3 [INFO] [stderr] Compiling futures-util v0.3.1 [INFO] [stderr] Compiling futures-channel v0.3.1 [INFO] [stderr] Compiling bit-set v0.5.1 [INFO] [stderr] Compiling tokio v0.2.9 [INFO] [stderr] Compiling http v0.2.0 [INFO] [stderr] Compiling serde_yaml v0.8.11 [INFO] [stderr] Compiling http-body v0.3.1 [INFO] [stderr] Compiling tokio-util v0.2.0 [INFO] [stderr] Compiling tokio-tls v0.3.0 [INFO] [stderr] Compiling h2 v0.2.1 [INFO] [stderr] Compiling pin-project-internal v0.4.6 [INFO] [stderr] Compiling pin-project v0.4.6 [INFO] [stderr] Compiling hyper v0.13.1 [INFO] [stderr] Compiling hyper-tls v0.4.1 [INFO] [stderr] Compiling reqwest v0.10.1 [INFO] [stderr] Compiling fast_uaparser v1.0.0 (/opt/rustwide/workdir) [INFO] [stderr] error: cannot find derive macro `Deserialize` in this scope [INFO] [stderr] --> build.rs:21:25 [INFO] [stderr] | [INFO] [stderr] 21 | define_parsers!(String: Deserialize); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `serde::Deserialize` [INFO] [stderr] --> build.rs:18:5 [INFO] [stderr] | [INFO] [stderr] 18 | use serde::Deserialize; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `unwrap` found for opaque type `impl std::future::Future` in the current scope [INFO] [stderr] --> build.rs:32:10 [INFO] [stderr] | [INFO] [stderr] 32 | .unwrap(); [INFO] [stderr] | ^^^^^^ method not found in `impl std::future::Future` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `for<'de> Parsers: serde::de::Deserialize<'de>` is not satisfied [INFO] [stderr] --> build.rs:35:28 [INFO] [stderr] | [INFO] [stderr] 35 | let parsers: Parsers = serde_yaml::from_str(&body).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ the trait `for<'de> serde::de::Deserialize<'de>` is not implemented for `Parsers` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/serde_yaml-0.8.11/src/de.rs:1010:8 [INFO] [stderr] | [INFO] [stderr] 1010 | T: DeserializeOwned, [INFO] [stderr] | ---------------- required by this bound in `serde_yaml::de::from_str` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `serde::de::DeserializeOwned` for `Parsers` [INFO] [stderr] [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `fast_uaparser`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "dc4294443357b5d4a537fbd7d4845833045f2ae821318d8bfd658ef7880757d1"` [INFO] running `"docker" "rm" "-f" "dc4294443357b5d4a537fbd7d4845833045f2ae821318d8bfd658ef7880757d1"` [INFO] [stdout] dc4294443357b5d4a537fbd7d4845833045f2ae821318d8bfd658ef7880757d1