[INFO] cloning repository https://github.com/daboross/thread-local-pcg [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/daboross/thread-local-pcg" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdaboross%2Fthread-local-pcg"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdaboross%2Fthread-local-pcg'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 08fca97169d7123997e909aadef33b84d8cd862b [INFO] testing daboross/thread-local-pcg against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdaboross%2Fthread-local-pcg" "/workspace/builds/worker-5/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-5/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/daboross/thread-local-pcg 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/daboross/thread-local-pcg [INFO] finished tweaking git repo https://github.com/daboross/thread-local-pcg [INFO] tweaked toml for git repo https://github.com/daboross/thread-local-pcg written to /workspace/builds/worker-5/source/Cargo.toml [INFO] crate git repo https://github.com/daboross/thread-local-pcg 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] [stderr] Updating git repository `https://github.com/codahale/pcg.git` [INFO] [stderr] error: the lock file /workspace/builds/worker-5/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag. [INFO] the lockfile is outdated, regenerating it [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Updating git repository `https://github.com/codahale/pcg.git` [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-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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] 5bbea87cf5e75b262d79adf3d19342a033c2c77f39e7c1fb6421a1a0c11ddbb0 [INFO] running `"docker" "start" "-a" "5bbea87cf5e75b262d79adf3d19342a033c2c77f39e7c1fb6421a1a0c11ddbb0"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling ppv-lite86 v0.2.8 [INFO] [stderr] Compiling rustc-serialize v0.3.24 [INFO] [stderr] Compiling rand v0.4.6 [INFO] [stderr] Compiling getrandom v0.1.14 [INFO] [stderr] Compiling rand_core v0.5.1 [INFO] [stderr] Compiling rand v0.3.23 [INFO] [stderr] Compiling rand_chacha v0.2.2 [INFO] [stderr] Compiling rand v0.7.3 [INFO] [stderr] Compiling pcg v0.0.1 (https://github.com/codahale/pcg.git#ab0a1581) [INFO] [stderr] error[E0432]: unresolved import `rand::Rand` [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/pcg-7b542cc1086e3f82/ab0a158/src/pcg.rs:1:30 [INFO] [stderr] | [INFO] [stderr] 1 | use rand::{Rng, SeedableRng, Rand}; [INFO] [stderr] | ^^^^ no `Rand` in the root [INFO] [stderr] [INFO] [stderr] error[E0407]: method `next_u32` is not a member of trait `Rng` [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/pcg-7b542cc1086e3f82/ab0a158/src/pcg.rs:49:5 [INFO] [stderr] | [INFO] [stderr] 49 | / fn next_u32(&mut self) -> u32 { [INFO] [stderr] 50 | | let old = self.state; [INFO] [stderr] 51 | | self.state = old.wrapping_mul(6364136223846793005) [INFO] [stderr] 52 | | .wrapping_add(self.inc); [INFO] [stderr] ... | [INFO] [stderr] 56 | | out [INFO] [stderr] 57 | | } [INFO] [stderr] | |_____^ not a member of trait `Rng` [INFO] [stderr] [INFO] [stderr] error[E0407]: method `reseed` is not a member of trait `SeedableRng` [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/pcg-7b542cc1086e3f82/ab0a158/src/pcg.rs:62:5 [INFO] [stderr] | [INFO] [stderr] 62 | / fn reseed(&mut self, seed: [u64; 2]) { [INFO] [stderr] 63 | | self.state = 0; [INFO] [stderr] 64 | | self.inc = (seed[1] << 1) | 1; [INFO] [stderr] 65 | | self.next_u32(); [INFO] [stderr] 66 | | self.state = self.state.wrapping_add(seed[0]); [INFO] [stderr] 67 | | self.next_u32(); [INFO] [stderr] 68 | | } [INFO] [stderr] | |_____^ not a member of trait `SeedableRng` [INFO] [stderr] [INFO] [stderr] error[E0107]: wrong number of type arguments: expected 0, found 1 [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/pcg-7b542cc1086e3f82/ab0a158/src/pcg.rs:60:18 [INFO] [stderr] | [INFO] [stderr] 60 | impl SeedableRng<[u64; 2]> for PcgRng { [INFO] [stderr] | ^^^^^^^^ unexpected type argument [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0107, E0407, E0432. [INFO] [stderr] For more information about an error, try `rustc --explain E0107`. [INFO] [stderr] error: could not compile `pcg`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "5bbea87cf5e75b262d79adf3d19342a033c2c77f39e7c1fb6421a1a0c11ddbb0"` [INFO] running `"docker" "rm" "-f" "5bbea87cf5e75b262d79adf3d19342a033c2c77f39e7c1fb6421a1a0c11ddbb0"` [INFO] [stdout] 5bbea87cf5e75b262d79adf3d19342a033c2c77f39e7c1fb6421a1a0c11ddbb0