[INFO] updating cached repository grwn/cryptopals-rust [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/grwn/cryptopals-rust [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/grwn/cryptopals-rust" "work/ex/beta-1.38-1/sources/1.37.0/gh/grwn/cryptopals-rust"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/grwn/cryptopals-rust'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/grwn/cryptopals-rust" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/grwn/cryptopals-rust"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/grwn/cryptopals-rust'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] e9fd3d145e148d5810f53fc1d529734351edd08d [INFO] sha for GitHub repo grwn/cryptopals-rust: e9fd3d145e148d5810f53fc1d529734351edd08d [INFO] validating manifest of grwn/cryptopals-rust on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of grwn/cryptopals-rust on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing grwn/cryptopals-rust [INFO] finished frobbing grwn/cryptopals-rust [INFO] frobbed toml for grwn/cryptopals-rust written to work/ex/beta-1.38-1/sources/1.37.0/gh/grwn/cryptopals-rust/Cargo.toml [INFO] started frobbing grwn/cryptopals-rust [INFO] finished frobbing grwn/cryptopals-rust [INFO] frobbed toml for grwn/cryptopals-rust written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/grwn/cryptopals-rust/Cargo.toml [INFO] crate grwn/cryptopals-rust already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing grwn/cryptopals-rust against beta-2019-08-13 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-7/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/grwn/cryptopals-rust:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-08-13" "build" "--frozen"` [INFO] [stdout] 0816dcd17430861ab33b6925d93315d7b55ad5cd661b4ffb82ee510d8c8ed788 [INFO] running `"docker" "start" "-a" "0816dcd17430861ab33b6925d93315d7b55ad5cd661b4ffb82ee510d8c8ed788"` [INFO] [stderr] Compiling cryptopals v0.1.0 (/opt/crater/workdir) [INFO] [stderr] error[E0432]: unresolved import `crate::set_1::challenge_6::test_hamming` [INFO] [stderr] --> src/main.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use crate::set_1::challenge_6::test_hamming; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `test_hamming` in `set_1::challenge_6` [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::set_1::utils::*` [INFO] [stderr] --> src/set_1/challenge_6.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use crate::set_1::utils::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: the item `hamming_distance` is imported redundantly [INFO] [stderr] --> src/set_1/utils.rs:156:9 [INFO] [stderr] | [INFO] [stderr] 148 | / pub fn hamming_distance(string1: &[u8], string2: &[u8]) -> u32 { [INFO] [stderr] 149 | | string1.iter() [INFO] [stderr] 150 | | .zip(string2) [INFO] [stderr] 151 | | .fold(0, |a, (b, c)| a + (*b ^ *c) [INFO] [stderr] 152 | | .count_ones()) [INFO] [stderr] 153 | | } [INFO] [stderr] | |_- the item `hamming_distance` is already defined here [INFO] [stderr] ... [INFO] [stderr] 156 | use hamming_distance; [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::set_1::challenge_6::challenge_6` [INFO] [stderr] --> src/main.rs:9:5 [INFO] [stderr] | [INFO] [stderr] 9 | use crate::set_1::challenge_6::challenge_6; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0432`. [INFO] [stderr] error: Could not compile `cryptopals`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "0816dcd17430861ab33b6925d93315d7b55ad5cd661b4ffb82ee510d8c8ed788"` [INFO] running `"docker" "rm" "-f" "0816dcd17430861ab33b6925d93315d7b55ad5cd661b4ffb82ee510d8c8ed788"` [INFO] [stdout] 0816dcd17430861ab33b6925d93315d7b55ad5cd661b4ffb82ee510d8c8ed788