[INFO] crate steam-crypto 0.1.1 is already in cache [INFO] testing steam-crypto-0.1.1 against beta-2020-06-03 for beta-1.45-1 [INFO] extracting crate steam-crypto 0.1.1 into /workspace/builds/worker-8/source [INFO] validating manifest of crates.io crate steam-crypto 0.1.1 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 crates.io crate steam-crypto 0.1.1 [INFO] finished tweaking crates.io crate steam-crypto 0.1.1 [INFO] tweaked toml for crates.io crate steam-crypto 0.1.1 written to /workspace/builds/worker-8/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Downloading crates ... [INFO] [stderr] Downloaded pem-parser v0.1.1 [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/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] 74750f50a8b403bcda533478049a0a0d81048b93feb70ca779aabfc4f2d45b03 [INFO] running `"docker" "start" "-a" "74750f50a8b403bcda533478049a0a0d81048b93feb70ca779aabfc4f2d45b03"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling getrandom v0.1.14 [INFO] [stderr] Compiling ppv-lite86 v0.2.8 [INFO] [stderr] Compiling aho-corasick v0.7.10 [INFO] [stderr] Compiling rand_core v0.5.1 [INFO] [stderr] Compiling rand_chacha v0.2.2 [INFO] [stderr] Compiling rand v0.7.3 [INFO] [stderr] Compiling regex v1.3.9 [INFO] [stderr] Compiling pem-parser v0.1.1 [INFO] [stderr] Compiling steam-crypto v0.1.1 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: could not find `crypto` in `openssl` [INFO] [stderr] --> src/lib.rs:7:20 [INFO] [stderr] | [INFO] [stderr] 7 | use self::openssl::crypto::pkey::{PKey, EncryptionPadding}; [INFO] [stderr] | ^^^^^^ could not find `crypto` in `openssl` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: could not find `crypto` in `openssl` [INFO] [stderr] --> src/symm/mod.rs:1:14 [INFO] [stderr] | [INFO] [stderr] 1 | use openssl::crypto::symm::{Crypter, Mode, Type}; [INFO] [stderr] | ^^^^^^ could not find `crypto` in `openssl` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Crypter` [INFO] [stderr] --> src/symm/mod.rs:9:20 [INFO] [stderr] | [INFO] [stderr] 9 | let iv_crypter = Crypter::new(Type::AES_256_ECB); [INFO] [stderr] | ^^^^^^^ use of undeclared type or module `Crypter` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Type` [INFO] [stderr] --> src/symm/mod.rs:9:33 [INFO] [stderr] | [INFO] [stderr] 9 | let iv_crypter = Crypter::new(Type::AES_256_ECB); [INFO] [stderr] | ^^^^ use of undeclared type or module `Type` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Crypter` [INFO] [stderr] --> src/symm/mod.rs:18:25 [INFO] [stderr] | [INFO] [stderr] 18 | let message_crypter = Crypter::new(Type::AES_256_CBC); [INFO] [stderr] | ^^^^^^^ use of undeclared type or module `Crypter` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Type` [INFO] [stderr] --> src/symm/mod.rs:18:38 [INFO] [stderr] | [INFO] [stderr] 18 | let message_crypter = Crypter::new(Type::AES_256_CBC); [INFO] [stderr] | ^^^^ use of undeclared type or module `Type` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Mode` [INFO] [stderr] --> src/symm/mod.rs:26:46 [INFO] [stderr] | [INFO] [stderr] 26 | let encrypted_iv = crypt_iv(plain_iv, key, Mode::Encrypt); [INFO] [stderr] | ^^^^ use of undeclared type or module `Mode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Mode` [INFO] [stderr] --> src/symm/mod.rs:27:65 [INFO] [stderr] | [INFO] [stderr] 27 | let encrypted_message = crypt_message(message, key, plain_iv, Mode::Encrypt); [INFO] [stderr] | ^^^^ use of undeclared type or module `Mode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Mode` [INFO] [stderr] --> src/symm/mod.rs:45:46 [INFO] [stderr] | [INFO] [stderr] 45 | let plain_iv = crypt_iv(encrypted_iv, key, Mode::Decrypt); [INFO] [stderr] | ^^^^ use of undeclared type or module `Mode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Mode` [INFO] [stderr] --> src/symm/mod.rs:48:76 [INFO] [stderr] | [INFO] [stderr] 48 | let decrypted_message = crypt_message(encrypted_message, key, &plain_iv, Mode::Decrypt); [INFO] [stderr] | ^^^^ use of undeclared type or module `Mode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `PKey` [INFO] [stderr] --> src/lib.rs:15:24 [INFO] [stderr] | [INFO] [stderr] 15 | let mut pkey = PKey::new(); [INFO] [stderr] | ^^^^ use of undeclared type or module `PKey` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `EncryptionPadding` [INFO] [stderr] --> src/lib.rs:33:7 [INFO] [stderr] | [INFO] [stderr] 33 | EncryptionPadding::PKCS1v15 [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ use of undeclared type or module `EncryptionPadding` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Mode` in this scope [INFO] [stderr] --> src/symm/mod.rs:8:48 [INFO] [stderr] | [INFO] [stderr] 8 | fn crypt_iv(plain_iv: &[u8], key: &[u8], mode: Mode) -> Vec { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: consider importing this enum [INFO] [stderr] | [INFO] [stderr] 1 | use openssl_::symm::Mode; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Mode` in this scope [INFO] [stderr] --> src/symm/mod.rs:17:69 [INFO] [stderr] | [INFO] [stderr] 17 | fn crypt_message(message: &[u8], key: &[u8], plain_iv: &[u8], mode: Mode) -> Vec { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: consider importing this enum [INFO] [stderr] | [INFO] [stderr] 1 | use openssl_::symm::Mode; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `PKey` in this scope [INFO] [stderr] --> src/lib.rs:14:24 [INFO] [stderr] | [INFO] [stderr] 14 | static STEAM_PKEY: PKey = { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: consider importing this struct [INFO] [stderr] | [INFO] [stderr] 4 | use openssl_::pkey::PKey; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: extern crate `openssl_` is private, and cannot be re-exported (error E0365), consider declaring with `pub` [INFO] [stderr] --> src/lib.rs:4:9 [INFO] [stderr] | [INFO] [stderr] 4 | pub use self::openssl_ as openssl; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(pub_use_of_private_extern_crate)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #34537 [INFO] [stderr] [INFO] [stderr] warning: extern crate `rand_` is private, and cannot be re-exported (error E0365), consider declaring with `pub` [INFO] [stderr] --> src/lib.rs:5:9 [INFO] [stderr] | [INFO] [stderr] 5 | pub use self::rand_ as rand; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #34537 [INFO] [stderr] [INFO] [stderr] error: aborting due to 15 previous errors; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `steam-crypto`. [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" "74750f50a8b403bcda533478049a0a0d81048b93feb70ca779aabfc4f2d45b03"` [INFO] running `"docker" "rm" "-f" "74750f50a8b403bcda533478049a0a0d81048b93feb70ca779aabfc4f2d45b03"` [INFO] [stdout] 74750f50a8b403bcda533478049a0a0d81048b93feb70ca779aabfc4f2d45b03