[INFO] fetching crate dashmap-shard 0.1.1... [INFO] testing dashmap-shard-0.1.1 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate dashmap-shard 0.1.1 into /workspace/builds/worker-10/source [INFO] validating manifest of crates.io crate dashmap-shard 0.1.1 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate dashmap-shard 0.1.1 [INFO] finished tweaking crates.io crate dashmap-shard 0.1.1 [INFO] tweaked toml for crates.io crate dashmap-shard 0.1.1 written to /workspace/builds/worker-10/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] c483719b6b8453234df848040a4ff09d74e818cdbe52b8ca7d4f26517f5e1187 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "c483719b6b8453234df848040a4ff09d74e818cdbe52b8ca7d4f26517f5e1187", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "c483719b6b8453234df848040a4ff09d74e818cdbe52b8ca7d4f26517f5e1187", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "c483719b6b8453234df848040a4ff09d74e818cdbe52b8ca7d4f26517f5e1187", kill_on_drop: false }` [INFO] [stdout] c483719b6b8453234df848040a4ff09d74e818cdbe52b8ca7d4f26517f5e1187 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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" "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" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] f5a550b5ffa4b7bffac7dd338b0be78e78300a8f6b8ae5cc65916a27ee6344fa [INFO] running `Command { std: "docker" "start" "-a" "f5a550b5ffa4b7bffac7dd338b0be78e78300a8f6b8ae5cc65916a27ee6344fa", kill_on_drop: false }` [INFO] [stderr] Compiling dashmap-shard v0.1.1 (/opt/rustwide/workdir) [INFO] [stderr] Compiling ahash v0.2.19 [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> src/raw/sse2.rs:36:10 [INFO] [stdout] | [INFO] [stdout] 36 | }; [INFO] [stdout] | ^ help: remove this semicolon [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1953:34 [INFO] [stdout] | [INFO] [stdout] 1953 | fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1953 - fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] 1953 + fn next(&mut self) -> Option<&'a K> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1973:34 [INFO] [stdout] | [INFO] [stdout] 1973 | fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1973 - fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] 1973 + fn next(&mut self) -> Option<&'a V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1993:34 [INFO] [stdout] | [INFO] [stdout] 1993 | fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1993 - fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] 1993 + fn next(&mut self) -> Option<&'a mut V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: missing documentation for an associated function [INFO] [stdout] --> src/map.rs:762:5 [INFO] [stdout] | [INFO] [stdout] 762 | / pub fn get_hash_nocheck_key_value(&self, hash: u64, k: &Q) -> Option<(&K, &V)> [INFO] [stdout] 763 | | where [INFO] [stdout] 764 | | K: Borrow, [INFO] [stdout] 765 | | Q: Hash + Eq, [INFO] [stdout] ... | [INFO] [stdout] 772 | | }) [INFO] [stdout] 773 | | } [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/lib.rs:25:9 [INFO] [stdout] | [INFO] [stdout] 25 | #![warn(missing_docs)] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.85s [INFO] running `Command { std: "docker" "inspect" "f5a550b5ffa4b7bffac7dd338b0be78e78300a8f6b8ae5cc65916a27ee6344fa", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f5a550b5ffa4b7bffac7dd338b0be78e78300a8f6b8ae5cc65916a27ee6344fa", kill_on_drop: false }` [INFO] [stdout] f5a550b5ffa4b7bffac7dd338b0be78e78300a8f6b8ae5cc65916a27ee6344fa [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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" "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" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] df0837b2d8c467d0982dac55a1fbef12b519c23cb22499b463bdc3aa0996e9cf [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "df0837b2d8c467d0982dac55a1fbef12b519c23cb22499b463bdc3aa0996e9cf", kill_on_drop: false }` [INFO] [stderr] Compiling rand_core v0.3.1 [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> src/raw/sse2.rs:36:10 [INFO] [stdout] | [INFO] [stdout] 36 | }; [INFO] [stdout] | ^ help: remove this semicolon [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1953:34 [INFO] [stdout] | [INFO] [stdout] 1953 | fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1953 - fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] 1953 + fn next(&mut self) -> Option<&'a K> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1973:34 [INFO] [stdout] | [INFO] [stdout] 1973 | fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1973 - fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] 1973 + fn next(&mut self) -> Option<&'a V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1993:34 [INFO] [stdout] | [INFO] [stdout] 1993 | fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1993 - fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] 1993 + fn next(&mut self) -> Option<&'a mut V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: missing documentation for an associated function [INFO] [stdout] --> src/map.rs:762:5 [INFO] [stdout] | [INFO] [stdout] 762 | / pub fn get_hash_nocheck_key_value(&self, hash: u64, k: &Q) -> Option<(&K, &V)> [INFO] [stdout] 763 | | where [INFO] [stdout] 764 | | K: Borrow, [INFO] [stdout] 765 | | Q: Hash + Eq, [INFO] [stdout] ... | [INFO] [stdout] 772 | | }) [INFO] [stdout] 773 | | } [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/lib.rs:25:9 [INFO] [stdout] | [INFO] [stdout] 25 | #![warn(missing_docs)] [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rand v0.5.6 [INFO] [stderr] Compiling dashmap-shard v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] error[E0432]: unresolved import `hashbrown` [INFO] [stdout] --> tests/set.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use hashbrown::HashSet; [INFO] [stdout] | ^^^^^^^^^ use of undeclared crate or module `hashbrown` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `hashbrown` [INFO] [stdout] --> tests/hasher.rs:5:5 [INFO] [stdout] | [INFO] [stdout] 5 | use hashbrown::HashSet; [INFO] [stdout] | ^^^^^^^^^ use of undeclared crate or module `hashbrown` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `hashbrown` [INFO] [stdout] --> tests/hasher.rs:26:13 [INFO] [stdout] | [INFO] [stdout] 26 | check::(); [INFO] [stdout] | ^^^^^^^^^ use of undeclared crate or module `hashbrown` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 2 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0432, E0433. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `dashmap-shard` due to 3 previous errors [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `dashmap-shard` due to 2 previous errors [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> src/raw/sse2.rs:36:10 [INFO] [stdout] | [INFO] [stdout] 36 | }; [INFO] [stdout] | ^ help: remove this semicolon [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1953:34 [INFO] [stdout] | [INFO] [stdout] 1953 | fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1953 - fn next(&mut self) -> Option<(&'a K)> { [INFO] [stdout] 1953 + fn next(&mut self) -> Option<&'a K> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1973:34 [INFO] [stdout] | [INFO] [stdout] 1973 | fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1973 - fn next(&mut self) -> Option<(&'a V)> { [INFO] [stdout] 1973 + fn next(&mut self) -> Option<&'a V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/map.rs:1993:34 [INFO] [stdout] | [INFO] [stdout] 1993 | fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1993 - fn next(&mut self) -> Option<(&'a mut V)> { [INFO] [stdout] 1993 + fn next(&mut self) -> Option<&'a mut V> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "df0837b2d8c467d0982dac55a1fbef12b519c23cb22499b463bdc3aa0996e9cf", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "df0837b2d8c467d0982dac55a1fbef12b519c23cb22499b463bdc3aa0996e9cf", kill_on_drop: false }` [INFO] [stdout] df0837b2d8c467d0982dac55a1fbef12b519c23cb22499b463bdc3aa0996e9cf