[INFO] updating cached repository https://github.com/siddharthverma314/cryptopals [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] 891f95df0e847bae84ce9621269bd1ba38cd3e31 [INFO] testing siddharthverma314/cryptopals against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsiddharthverma314%2Fcryptopals" "/workspace/builds/worker-6/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-6/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/siddharthverma314/cryptopals on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/siddharthverma314/cryptopals [INFO] finished tweaking git repo https://github.com/siddharthverma314/cryptopals [INFO] tweaked toml for git repo https://github.com/siddharthverma314/cryptopals written to /workspace/builds/worker-6/source/Cargo.toml [INFO] crate git repo https://github.com/siddharthverma314/cryptopals already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [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=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" "+1.44.0" "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] b7e0d95071a3d9de965e05d02a9c5515417567c6403ac994fc7a528f635e7c71 [INFO] running `"docker" "start" "-a" "b7e0d95071a3d9de965e05d02a9c5515417567c6403ac994fc7a528f635e7c71"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling semver-parser v0.7.0 [INFO] [stderr] Compiling libc v0.2.45 [INFO] [stderr] Compiling rand_core v0.3.0 [INFO] [stderr] Compiling rayon-core v1.4.1 [INFO] [stderr] Compiling rayon v1.0.3 [INFO] [stderr] Compiling crossbeam-utils v0.2.2 [INFO] [stderr] Compiling crossbeam-epoch v0.3.1 [INFO] [stderr] Compiling rand_isaac v0.1.1 [INFO] [stderr] Compiling rand_xorshift v0.1.0 [INFO] [stderr] Compiling rand_hc v0.1.0 [INFO] [stderr] Compiling semver v0.9.0 [INFO] [stderr] Compiling rustc_version v0.2.3 [INFO] [stderr] Compiling crossbeam-deque v0.2.0 [INFO] [stderr] Compiling rand_pcg v0.1.1 [INFO] [stderr] Compiling rand_chacha v0.1.0 [INFO] [stderr] Compiling rand v0.6.1 [INFO] [stderr] Compiling num_cpus v1.9.0 [INFO] [stderr] Compiling cryptopal v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0423]: expected function, found macro `assert_eq` [INFO] [stderr] --> src/aes.rs:117:9 [INFO] [stderr] | [INFO] [stderr] 117 | assert_eq(mat.len(), 16); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] help: use `!` to invoke the macro [INFO] [stderr] | [INFO] [stderr] 117 | assert_eq!(mat.len(), 16); [INFO] [stderr] | ^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/convert.rs:6:14 [INFO] [stderr] | [INFO] [stderr] 6 | buf: Box + 'a>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Iterator + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/convert.rs:38:14 [INFO] [stderr] | [INFO] [stderr] 38 | buf: Box + 'a>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Iterator + 'a` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/aes.rs:119:9 [INFO] [stderr] | [INFO] [stderr] 116 | pub fn mix_columns(mut self, mat: &[u8]) -> AesBuf { [INFO] [stderr] | ------ expected `aes::AesBuf` because of return type [INFO] [stderr] ... [INFO] [stderr] 119 | / for c in 0..self.nb { [INFO] [stderr] 120 | | for r in 0..4 { [INFO] [stderr] 121 | | let mut elem = 0; [INFO] [stderr] 122 | | for i in 0..4 { [INFO] [stderr] ... | [INFO] [stderr] 125 | | } [INFO] [stderr] 126 | | } [INFO] [stderr] | |_________^ expected struct `aes::AesBuf`, found `()` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0308, E0423. [INFO] [stderr] For more information about an error, try `rustc --explain E0308`. [INFO] [stderr] error: could not compile `cryptopal`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "b7e0d95071a3d9de965e05d02a9c5515417567c6403ac994fc7a528f635e7c71"` [INFO] running `"docker" "rm" "-f" "b7e0d95071a3d9de965e05d02a9c5515417567c6403ac994fc7a528f635e7c71"` [INFO] [stdout] b7e0d95071a3d9de965e05d02a9c5515417567c6403ac994fc7a528f635e7c71