[INFO] updating cached repository https://github.com/jimblandy/hexes [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 2d6d5a7a5482b8b8475996b2cb851f76885fb3c7 [INFO] checking jimblandy/hexes against try#ea663bba38739867a4b75ac820991b4f5d093c3b for pr-62262-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjimblandy%2Fhexes" "/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/jimblandy/hexes 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/jimblandy/hexes [INFO] finished tweaking git repo https://github.com/jimblandy/hexes [INFO] tweaked toml for git repo https://github.com/jimblandy/hexes written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/jimblandy/hexes 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-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=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] d9dade42a64178c77ebbd96537851efe2f328c0605c68925e7c5adc106705c0f [INFO] running `"docker" "start" "-a" "d9dade42a64178c77ebbd96537851efe2f328c0605c68925e7c5adc106705c0f"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling phf_shared v0.7.20 [INFO] [stderr] Compiling dtoa v0.2.2 [INFO] [stderr] Compiling num-traits v0.1.36 [INFO] [stderr] Compiling itoa v0.1.1 [INFO] [stderr] Compiling serde v0.8.21 [INFO] [stderr] Compiling xml-rs v0.3.5 [INFO] [stderr] Compiling x11-dl v2.12.0 [INFO] [stderr] Checking shared_library v0.1.5 [INFO] [stderr] Compiling backtrace-sys v0.1.5 [INFO] [stderr] Compiling tempfile v2.1.4 [INFO] [stderr] Checking cgmath v0.12.0 [INFO] [stderr] Checking fs2 v0.2.5 [INFO] [stderr] Checking osmesa-sys v0.1.2 [INFO] [stderr] Checking memmap v0.2.3 [INFO] [stderr] Compiling phf_generator v0.7.20 [INFO] [stderr] Compiling phf v0.7.20 [INFO] [stderr] Compiling phf_codegen v0.7.20 [INFO] [stderr] Checking backtrace v0.2.3 [INFO] [stderr] Compiling target_build_utils v0.1.2 [INFO] [stderr] Compiling wayland-scanner v0.5.11 [INFO] [stderr] Compiling gl_generator v0.5.2 [INFO] [stderr] Compiling wayland-client v0.5.12 [INFO] [stderr] Compiling glutin v0.6.2 [INFO] [stderr] Compiling glium v0.15.0 [INFO] [stderr] Compiling serde_json v0.8.4 [INFO] [stderr] Compiling libloading v0.3.1 [INFO] [stderr] Checking dlib v0.3.1 [INFO] [stderr] Checking wayland-sys v0.5.11 [INFO] [stderr] Checking wayland-window v0.2.3 [INFO] [stderr] Checking wayland-kbd v0.3.6 [INFO] [stderr] Checking hexes v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/main.rs:61:9 [INFO] [stderr] | [INFO] [stderr] 61 | / /// You can think of the vertices of a hex grid as the union of four [INFO] [stderr] 62 | | /// rectangular grids, each of which has a horizontal spacing of three [INFO] [stderr] 63 | | /// and a vertical spacing of √3. The bottom bits of the two indices [INFO] [stderr] 64 | | /// indicate which grid of the four the given vertex falls on. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 65 | / let offset = match (i & 1, j & 1) { [INFO] [stderr] 66 | | (0,0) => Vector2::new( 0.0, 0.0), [INFO] [stderr] 67 | | (1,0) => Vector2::new( 1.0, 0.0), [INFO] [stderr] 68 | | (0,1) => Vector2::new(-0.5, f32::sqrt(3.0) / 2.0), [INFO] [stderr] 69 | | (1,1) => Vector2::new( 1.5, f32::sqrt(3.0) / 2.0), [INFO] [stderr] 70 | | _ => panic!("unexpected bit pattern") [INFO] [stderr] 71 | | }; [INFO] [stderr] | |__________- rustdoc does not generate documentation for statements [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/main.rs:61:9 [INFO] [stderr] | [INFO] [stderr] 61 | / /// You can think of the vertices of a hex grid as the union of four [INFO] [stderr] 62 | | /// rectangular grids, each of which has a horizontal spacing of three [INFO] [stderr] 63 | | /// and a vertical spacing of √3. The bottom bits of the two indices [INFO] [stderr] 64 | | /// indicate which grid of the four the given vertex falls on. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 65 | / let offset = match (i & 1, j & 1) { [INFO] [stderr] 66 | | (0,0) => Vector2::new( 0.0, 0.0), [INFO] [stderr] 67 | | (1,0) => Vector2::new( 1.0, 0.0), [INFO] [stderr] 68 | | (0,1) => Vector2::new(-0.5, f32::sqrt(3.0) / 2.0), [INFO] [stderr] 69 | | (1,1) => Vector2::new( 1.5, f32::sqrt(3.0) / 2.0), [INFO] [stderr] 70 | | _ => panic!("unexpected bit pattern") [INFO] [stderr] 71 | | }; [INFO] [stderr] | |__________- rustdoc does not generate documentation for statements [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 12s [INFO] running `"docker" "inspect" "d9dade42a64178c77ebbd96537851efe2f328c0605c68925e7c5adc106705c0f"` [INFO] running `"docker" "rm" "-f" "d9dade42a64178c77ebbd96537851efe2f328c0605c68925e7c5adc106705c0f"` [INFO] [stdout] d9dade42a64178c77ebbd96537851efe2f328c0605c68925e7c5adc106705c0f