[INFO] crate aes 0.3.2 is already in cache
[INFO] checking aes-0.3.2 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate aes 0.3.2 into /workspace/builds/worker-14/source
[INFO] validating manifest of crates.io crate aes 0.3.2 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate aes 0.3.2
[INFO] finished tweaking crates.io crate aes 0.3.2
[INFO] tweaked toml for crates.io crate aes 0.3.2 written to /workspace/builds/worker-14/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/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=forbid" "-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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 5a83a70d763cf4bcd124bd868ae98f5048b709ec0782ff2d3f604dc49f0827c4
[INFO] running `"docker" "start" "-a" "5a83a70d763cf4bcd124bd868ae98f5048b709ec0782ff2d3f604dc49f0827c4"`
[INFO] [stderr]     Checking blobby v0.1.2
[INFO] [stderr]     Checking block-cipher-trait v0.6.2
[INFO] [stderr]     Checking aes-soft v0.3.3
[INFO] [stderr]     Checking aes v0.3.2 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `aes::BlockCipher`
[INFO] [stderr]  --> benches/aes192.rs:6:19
[INFO] [stderr]   |
[INFO] [stderr] 6 | use aes::{Aes192, BlockCipher};
[INFO] [stderr]   |                   ^^^^^^^^^^^ no `BlockCipher` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `aes::BlockCipher`
[INFO] [stderr]  --> benches/aes128.rs:6:19
[INFO] [stderr]   |
[INFO] [stderr] 6 | use aes::{Aes128, BlockCipher};
[INFO] [stderr]   |                   ^^^^^^^^^^^ no `BlockCipher` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `aes::BlockCipher`
[INFO] [stderr]  --> benches/aes256.rs:6:19
[INFO] [stderr]   |
[INFO] [stderr] 6 | use aes::{Aes256, BlockCipher};
[INFO] [stderr]   |                   ^^^^^^^^^^^ no `BlockCipher` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes192` in the current scope
[INFO] [stderr]   --> benches/aes192.rs:10:26
[INFO] [stderr]    |
[INFO] [stderr] 10 |     let cipher = Aes192::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes192`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes256` in the current scope
[INFO] [stderr]   --> benches/aes256.rs:10:26
[INFO] [stderr]    |
[INFO] [stderr] 10 |     let cipher = Aes256::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes256`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes256` in the current scope
[INFO] [stderr]   --> benches/aes256.rs:22:26
[INFO] [stderr]    |
[INFO] [stderr] 22 |     let cipher = Aes256::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes256`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes256` in the current scope
[INFO] [stderr]   --> benches/aes256.rs:34:26
[INFO] [stderr]    |
[INFO] [stderr] 34 |     let cipher = Aes256::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes256`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes192` in the current scope
[INFO] [stderr]   --> benches/aes192.rs:22:26
[INFO] [stderr]    |
[INFO] [stderr] 22 |     let cipher = Aes192::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes192`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes192` in the current scope
[INFO] [stderr]   --> benches/aes192.rs:34:26
[INFO] [stderr]    |
[INFO] [stderr] 34 |     let cipher = Aes192::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes192`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes256` in the current scope
[INFO] [stderr]   --> benches/aes256.rs:46:26
[INFO] [stderr]    |
[INFO] [stderr] 46 |     let cipher = Aes256::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes256`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes192` in the current scope
[INFO] [stderr]   --> benches/aes192.rs:46:26
[INFO] [stderr]    |
[INFO] [stderr] 46 |     let cipher = Aes192::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes192`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 5 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: aborting due to 5 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: could not compile `aes`.
[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: could not compile `aes`.
[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[E0599]: no function or associated item named `new` found for struct `aes::Aes128` in the current scope
[INFO] [stderr]   --> benches/aes128.rs:10:26
[INFO] [stderr]    |
[INFO] [stderr] 10 |     let cipher = Aes128::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes128`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes128` in the current scope
[INFO] [stderr]   --> benches/aes128.rs:22:26
[INFO] [stderr]    |
[INFO] [stderr] 22 |     let cipher = Aes128::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes128`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes128` in the current scope
[INFO] [stderr]   --> benches/aes128.rs:34:26
[INFO] [stderr]    |
[INFO] [stderr] 34 |     let cipher = Aes128::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes128`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `aes::Aes128` in the current scope
[INFO] [stderr]   --> benches/aes128.rs:46:26
[INFO] [stderr]    |
[INFO] [stderr] 46 |     let cipher = Aes128::new(&Default::default());
[INFO] [stderr]    |                          ^^^ function or associated item not found in `aes::Aes128`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 6  | use aes::block_cipher_trait::BlockCipher;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 5 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: could not compile `aes`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "5a83a70d763cf4bcd124bd868ae98f5048b709ec0782ff2d3f604dc49f0827c4"`
[INFO] running `"docker" "rm" "-f" "5a83a70d763cf4bcd124bd868ae98f5048b709ec0782ff2d3f604dc49f0827c4"`
[INFO] [stdout] 5a83a70d763cf4bcd124bd868ae98f5048b709ec0782ff2d3f604dc49f0827c4
