[INFO] updating cached repository https://github.com/frondeus/AES-Bruteforce [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] ed5f7185bcf175250881f04e66be0fdd06abb804 [INFO] testing frondeus/AES-Bruteforce against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Ffrondeus%2FAES-Bruteforce" "work/builds/worker-6/source"` [INFO] [stderr] Cloning into 'work/builds/worker-6/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/frondeus/AES-Bruteforce on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/frondeus/AES-Bruteforce [INFO] finished tweaking git repo https://github.com/frondeus/AES-Bruteforce [INFO] tweaked toml for git repo https://github.com/frondeus/AES-Bruteforce written to work/builds/worker-6/source/Cargo.toml [INFO] crate git repo https://github.com/frondeus/AES-Bruteforce already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /big/crater/work/builds/worker-6/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] the lockfile is outdated, regenerating it [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-6/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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-2019-09-28" "build" "--frozen"` [INFO] [stdout] 499cebf73b3170cf39454116b0a3310b842ec3b04f0269ca3411725ab4107b2c [INFO] running `"docker" "start" "-a" "499cebf73b3170cf39454116b0a3310b842ec3b04f0269ca3411725ab4107b2c"` [INFO] [stderr] Compiling pkg-config v0.3.16 [INFO] [stderr] Compiling cc v1.0.45 [INFO] [stderr] Compiling bitflags v1.2.0 [INFO] [stderr] Compiling openssl v0.10.25 [INFO] [stderr] Compiling data-encoding v2.1.2 [INFO] [stderr] Compiling num-traits v0.2.8 [INFO] [stderr] Compiling num-integer v0.1.41 [INFO] [stderr] Compiling num-bigint v0.2.3 [INFO] [stderr] Compiling num-rational v0.2.2 [INFO] [stderr] Compiling num-complex v0.2.3 [INFO] [stderr] Compiling num-iter v0.1.39 [INFO] [stderr] Compiling time v0.1.42 [INFO] [stderr] Compiling openssl-sys v0.9.50 [INFO] [stderr] Compiling num v0.2.0 [INFO] [stderr] Compiling test2 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: could not find `crypto` in `openssl` [INFO] [stderr] --> src/main.rs:11:14 [INFO] [stderr] | [INFO] [stderr] 11 | use openssl::crypto::symm::{Type, decrypt}; [INFO] [stderr] | ^^^^^^ could not find `crypto` in `openssl` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `data_encoding::base64` [INFO] [stderr] --> src/main.rs:10:5 [INFO] [stderr] | [INFO] [stderr] 10 | use data_encoding::base64; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ no `base64` in the root [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Type` [INFO] [stderr] --> src/main.rs:38:30 [INFO] [stderr] | [INFO] [stderr] 38 | let output = decrypt(Type::AES_256_CBC, &_key, Some(iv), input); [INFO] [stderr] | ^^^^ use of undeclared type or module `Type` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `decrypt` in this scope [INFO] [stderr] --> src/main.rs:38:22 [INFO] [stderr] | [INFO] [stderr] 38 | let output = decrypt(Type::AES_256_CBC, &_key, Some(iv), input); [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 10 | use openssl::symm::decrypt; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unused import: `ToHex` [INFO] [stderr] --> src/main.rs:12:37 [INFO] [stderr] | [INFO] [stderr] 12 | use rustc_serialize::hex::{FromHex, ToHex}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused imports: `BigEndian`, `WriteBytesExt` [INFO] [stderr] --> src/main.rs:14:17 [INFO] [stderr] | [INFO] [stderr] 14 | use byteorder::{BigEndian, WriteBytesExt}; [INFO] [stderr] | ^^^^^^^^^ ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::env` [INFO] [stderr] --> src/main.rs:19:5 [INFO] [stderr] | [INFO] [stderr] 19 | use std::env; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0425, E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `test2`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "499cebf73b3170cf39454116b0a3310b842ec3b04f0269ca3411725ab4107b2c"` [INFO] running `"docker" "rm" "-f" "499cebf73b3170cf39454116b0a3310b842ec3b04f0269ca3411725ab4107b2c"` [INFO] [stdout] 499cebf73b3170cf39454116b0a3310b842ec3b04f0269ca3411725ab4107b2c