[INFO] updating cached repository https://github.com/wizzk42/rsa-crypt
[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] e98223fbeb32259eda05884677e7ea6e03f66d34
[INFO] checking wizzk42/rsa-crypt against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fwizzk42%2Frsa-crypt" "/workspace/builds/worker-4/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-4/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/wizzk42/rsa-crypt on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/wizzk42/rsa-crypt
[INFO] finished tweaking git repo https://github.com/wizzk42/rsa-crypt
[INFO] tweaked toml for git repo https://github.com/wizzk42/rsa-crypt written to /workspace/builds/worker-4/source/Cargo.toml
[INFO] crate git repo https://github.com/wizzk42/rsa-crypt already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] warning: unused manifest key: build
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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] 974a1a7b3acff51f924a8fabea885537ed106c20883af00efc1aad6db9907a59
[INFO] running `"docker" "start" "-a" "974a1a7b3acff51f924a8fabea885537ed106c20883af00efc1aad6db9907a59"`
[INFO] [stderr] warning: unused manifest key: build
[INFO] [stderr]    Compiling syn v0.15.34
[INFO] [stderr]     Checking difference v1.0.0
[INFO] [stderr]     Checking clap v2.33.0
[INFO] [stderr]    Compiling openssl-sys v0.9.43
[INFO] [stderr]     Checking pretty_assertions v0.4.1
[INFO] [stderr]    Compiling openssl v0.10.20
[INFO] [stderr]    Compiling structopt-derive v0.2.15
[INFO] [stderr]     Checking structopt v0.2.15
[INFO] [stderr]     Checking rsa-crypt v0.1.2 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `rsa_crypt::crypt::Encryptable`
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:11:63
[INFO] [stderr]    |
[INFO] [stderr] 11 | use rsa_crypt::crypt::{Encrypter, AesEncrypter, RsaEncrypter, Encryptable};
[INFO] [stderr]    |                                                               ^^^^^^^^^^^ no `Encryptable` in `crypt`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `rsa_crypt::crypt::Decryptable`
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:13:63
[INFO] [stderr]    |
[INFO] [stderr] 13 | use rsa_crypt::crypt::{Decrypter, AesDecrypter, RsaDecrypter, Decryptable};
[INFO] [stderr]    |                                                               ^^^^^^^^^^^ no `Decryptable` in `crypt`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `rsa_crypt::crypt::Encrypter<_>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:26:61
[INFO] [stderr]    |
[INFO] [stderr] 26 |     let rsa_encrypter: Encrypter<RsaEncrypter> = Encrypter::new(&public_key);
[INFO] [stderr]    |                                                             ^^^ function or associated item not found in `rsa_crypt::crypt::Encrypter<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encrypt` found for struct `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::RsaEncrypter>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:29:10
[INFO] [stderr]    |
[INFO] [stderr] 29 |         .encrypt(
[INFO] [stderr]    |          ^^^^^^^ method not found in `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::RsaEncrypter>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/workdir/src/crypt/api/encryptable.rs:10:8
[INFO] [stderr]    |
[INFO] [stderr] 10 |     fn encrypt(&self, _plaintext: &[u8], _ciphertext: &mut Vec<u8>, _opts: &CryptParams) -> usize;
[INFO] [stderr]    |        -------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::RsaEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::RsaEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::RsaEncrypter>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `rsa_crypt::crypt::Decrypter<_>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:37:61
[INFO] [stderr]    |
[INFO] [stderr] 37 |     let rsa_decrypter: Decrypter<RsaDecrypter> = Decrypter::new(
[INFO] [stderr]    |                                                             ^^^ function or associated item not found in `rsa_crypt::crypt::Decrypter<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::decryptable::Decryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `decrypt` found for struct `rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::RsaDecrypter>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:42:10
[INFO] [stderr]    |
[INFO] [stderr] 42 |         .decrypt(&mut decrypted_plaintext, &ciphertext);
[INFO] [stderr]    |          ^^^^^^^ method not found in `rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::RsaDecrypter>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/workdir/src/crypt/api/decryptable.rs:10:8
[INFO] [stderr]    |
[INFO] [stderr] 10 |     fn decrypt(&self, _plaintext: &mut Vec<u8>, _ciphertext: &[u8], _params: &CryptParams) -> usize;
[INFO] [stderr]    |        -------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::RsaDecrypter>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::RsaDecrypter>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::RsaDecrypter>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::decryptable::Decryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `rsa_crypt::crypt::Encrypter<_>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:57:61
[INFO] [stderr]    |
[INFO] [stderr] 57 |     let aes_encrypter: Encrypter<AesEncrypter> = Encrypter::new(&key);
[INFO] [stderr]    |                                                             ^^^ function or associated item not found in `rsa_crypt::crypt::Encrypter<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encrypt` found for struct `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:60:10
[INFO] [stderr]    |
[INFO] [stderr] 60 |         .encrypt(
[INFO] [stderr]    |          ^^^^^^^ method not found in `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/workdir/src/crypt/api/encryptable.rs:10:8
[INFO] [stderr]    |
[INFO] [stderr] 10 |     fn encrypt(&self, _plaintext: &[u8], _ciphertext: &mut Vec<u8>, _opts: &CryptParams) -> usize;
[INFO] [stderr]    |        -------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `rsa_crypt::crypt::Decrypter<_>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:67:61
[INFO] [stderr]    |
[INFO] [stderr] 67 |     let aes_decrypter: Decrypter<AesDecrypter> = Decrypter::new(&key, &Vec::new());
[INFO] [stderr]    |                                                             ^^^ function or associated item not found in `rsa_crypt::crypt::Decrypter<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::decryptable::Decryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `decrypt` found for struct `rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::AesDecrypter>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:68:46
[INFO] [stderr]    |
[INFO] [stderr] 68 |     let plaintext_len: usize = aes_decrypter.decrypt(
[INFO] [stderr]    |                                              ^^^^^^^ method not found in `rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::AesDecrypter>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/workdir/src/crypt/api/decryptable.rs:10:8
[INFO] [stderr]    |
[INFO] [stderr] 10 |     fn decrypt(&self, _plaintext: &mut Vec<u8>, _ciphertext: &[u8], _params: &CryptParams) -> usize;
[INFO] [stderr]    |        -------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::AesDecrypter>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::AesDecrypter>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<rsa_crypt::crypt::Decrypter<rsa_crypt::crypt::AesDecrypter>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::decryptable::Decryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `rsa_crypt::crypt::Encrypter<_>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:87:61
[INFO] [stderr]    |
[INFO] [stderr] 87 |     let aes_encrypter: Encrypter<AesEncrypter> = Encrypter::new(&key);
[INFO] [stderr]    |                                                             ^^^ function or associated item not found in `rsa_crypt::crypt::Encrypter<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encrypt` found for struct `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>` in the current scope
[INFO] [stderr]   --> src/tests/roundtrip_tests.rs:90:10
[INFO] [stderr]    |
[INFO] [stderr] 90 |         .encrypt(
[INFO] [stderr]    |          ^^^^^^^ method not found in `rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/workdir/src/crypt/api/encryptable.rs:10:8
[INFO] [stderr]    |
[INFO] [stderr] 10 |     fn encrypt(&self, _plaintext: &[u8], _ciphertext: &mut Vec<u8>, _opts: &CryptParams) -> usize;
[INFO] [stderr]    |        -------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<rsa_crypt::crypt::Encrypter<rsa_crypt::crypt::AesEncrypter>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use crate::rsa_crypt::crypt::api::encryptable::Encryptable;`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 12 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 `rsa-crypt`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "974a1a7b3acff51f924a8fabea885537ed106c20883af00efc1aad6db9907a59"`
[INFO] running `"docker" "rm" "-f" "974a1a7b3acff51f924a8fabea885537ed106c20883af00efc1aad6db9907a59"`
[INFO] [stdout] 974a1a7b3acff51f924a8fabea885537ed106c20883af00efc1aad6db9907a59
