[INFO] crate pcd-rs 0.3.0 is already in cache [INFO] checking pcd-rs-0.3.0 against master#b61e69433951e31f7bd746e22f516a48ad41623b for prs-64470-and-65389 [INFO] extracting crate pcd-rs 0.3.0 into /workspace/builds/worker-9/source [INFO] validating manifest of crates.io crate pcd-rs 0.3.0 on toolchain b61e69433951e31f7bd746e22f516a48ad41623b [INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate pcd-rs 0.3.0 [INFO] finished tweaking crates.io crate pcd-rs 0.3.0 [INFO] tweaked toml for crates.io crate pcd-rs 0.3.0 written to /workspace/builds/worker-9/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "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-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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" "+b61e69433951e31f7bd746e22f516a48ad41623b" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 4c4ec7c0f25ea0262b01aa7a7798258ca62e0185c26c2c990a25264557f4b27f [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" "4c4ec7c0f25ea0262b01aa7a7798258ca62e0185c26c2c990a25264557f4b27f"` [INFO] [stderr] Compiling pcd-rs-derive v0.2.0 [INFO] [stderr] Checking pcd-rs v0.3.0 (/opt/rustwide/workdir) [INFO] [stderr] error: cannot find derive macro `PCDRecord` in this scope [INFO] [stderr] --> tests/load.rs:5:10 [INFO] [stderr] | [INFO] [stderr] 5 | #[derive(PCDRecord)] [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: cannot find derive macro `PCDRecord` in this scope [INFO] [stderr] --> tests/load.rs:13:10 [INFO] [stderr] | [INFO] [stderr] 13 | #[derive(PCDRecord)] [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `PCDRecord` [INFO] [stderr] --> tests/load.rs:2:14 [INFO] [stderr] | [INFO] [stderr] 2 | use pcd_rs::{PCDRecord, SeqReaderBuilder}; [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointAscii: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:24:18 [INFO] [stderr] | [INFO] [stderr] 24 | let points = reader.collect::>>()?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointAscii` [INFO] [stderr] | [INFO] [stderr] = note: required by `pcd_rs::seq_reader::SeqReader` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointAscii: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:24:25 [INFO] [stderr] | [INFO] [stderr] 24 | let points = reader.collect::>>()?; [INFO] [stderr] | ^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointAscii` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `std::iter::Iterator` for `pcd_rs::seq_reader::SeqReader, PointAscii>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointAscii: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:23:18 [INFO] [stderr] | [INFO] [stderr] 23 | let reader = SeqReaderBuilder::open_path("test_files/ascii.pcd")?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointAscii` [INFO] [stderr] | [INFO] [stderr] = note: required by `pcd_rs::seq_reader::SeqReader` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointAscii: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:23:18 [INFO] [stderr] | [INFO] [stderr] 23 | let reader = SeqReaderBuilder::open_path("test_files/ascii.pcd")?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointAscii` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/workdir/src/seq_reader.rs:119:41 [INFO] [stderr] | [INFO] [stderr] 119 | pub fn open_path, T: PCDRecord>( [INFO] [stderr] | --------- required by this bound in `pcd_rs::seq_reader::SeqReaderBuilder::open_path` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointBinary: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:33:18 [INFO] [stderr] | [INFO] [stderr] 33 | let points = reader.collect::>>()?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointBinary` [INFO] [stderr] | [INFO] [stderr] = note: required by `pcd_rs::seq_reader::SeqReader` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointBinary: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:33:25 [INFO] [stderr] | [INFO] [stderr] 33 | let points = reader.collect::>>()?; [INFO] [stderr] | ^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointBinary` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `std::iter::Iterator` for `pcd_rs::seq_reader::SeqReader, PointBinary>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointBinary: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:32:18 [INFO] [stderr] | [INFO] [stderr] 32 | let reader = SeqReaderBuilder::open_path(path)?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointBinary` [INFO] [stderr] | [INFO] [stderr] = note: required by `pcd_rs::seq_reader::SeqReader` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `PointBinary: pcd_rs::record::PCDRecord` is not satisfied [INFO] [stderr] --> tests/load.rs:32:18 [INFO] [stderr] | [INFO] [stderr] 32 | let reader = SeqReaderBuilder::open_path(path)?; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `pcd_rs::record::PCDRecord` is not implemented for `PointBinary` [INFO] [stderr] | [INFO] [stderr] ::: /opt/rustwide/workdir/src/seq_reader.rs:119:41 [INFO] [stderr] | [INFO] [stderr] 119 | pub fn open_path, T: PCDRecord>( [INFO] [stderr] | --------- required by this bound in `pcd_rs::seq_reader::SeqReaderBuilder::open_path` [INFO] [stderr] [INFO] [stderr] error: aborting due to 10 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `pcd-rs`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "4c4ec7c0f25ea0262b01aa7a7798258ca62e0185c26c2c990a25264557f4b27f"` [INFO] running `"docker" "rm" "-f" "4c4ec7c0f25ea0262b01aa7a7798258ca62e0185c26c2c990a25264557f4b27f"` [INFO] [stdout] 4c4ec7c0f25ea0262b01aa7a7798258ca62e0185c26c2c990a25264557f4b27f