[INFO] updating cached repository https://github.com/proprefenetre/rust-caesar
[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] 360696a57de933b686b4bcf579ab07f6e808fb5b
[INFO] checking proprefenetre/rust-caesar against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fproprefenetre%2Frust-caesar" "/workspace/builds/worker-11/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-11/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/proprefenetre/rust-caesar on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/proprefenetre/rust-caesar
[INFO] finished tweaking git repo https://github.com/proprefenetre/rust-caesar
[INFO] tweaked toml for git repo https://github.com/proprefenetre/rust-caesar written to /workspace/builds/worker-11/source/Cargo.toml
[INFO] crate git repo https://github.com/proprefenetre/rust-caesar already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "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] 4f0bfc1a7697a60364d5386d2caa7634d8d0d7db9e308ad7f93be431153df74b
[INFO] running `"docker" "start" "-a" "4f0bfc1a7697a60364d5386d2caa7634d8d0d7db9e308ad7f93be431153df74b"`
[INFO] [stderr]     Checking clap v2.30.0
[INFO] [stderr]     Checking julius v1.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0599]: no method named `push_str` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:108:13
[INFO] [stderr]     |
[INFO] [stderr] 108 |         key.push_str(key.repeat(text.len() / key.len()).as_str());
[INFO] [stderr]     |             ^^^^^^^^ method not found in `std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `as_str` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:108:57
[INFO] [stderr]     |
[INFO] [stderr] 108 |         key.push_str(key.repeat(text.len() / key.len()).as_str());
[INFO] [stderr]     |                                                         ^^^^^^ help: there is an associated function with a similar name: `as_ptr`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `chars` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:112:23
[INFO] [stderr]     |
[INFO] [stderr] 112 |     for (k, t) in key.chars().zip(text.chars()) {
[INFO] [stderr]     |                       ^^^^^ method not found in `std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/main.rs:159:13
[INFO] [stderr]     |
[INFO] [stderr] 159 |             &file_or_str(matches.value_of("caesar").unwrap()).unwrap(),
[INFO] [stderr]     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `str`, found struct `std::vec::Vec`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected reference `&str`
[INFO] [stderr]                found reference `&std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/main.rs:163:26
[INFO] [stderr]     |
[INFO] [stderr] 163 |         value = xor(key, &file_or_str(matches.value_of("xor").unwrap()).unwrap());
[INFO] [stderr]     |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `str`, found struct `std::vec::Vec`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected reference `&str`
[INFO] [stderr]                found reference `&std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 5 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0308, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0308`.
[INFO] [stderr] error: could not compile `julius`.
[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 method named `push_str` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:108:13
[INFO] [stderr]     |
[INFO] [stderr] 108 |         key.push_str(key.repeat(text.len() / key.len()).as_str());
[INFO] [stderr]     |             ^^^^^^^^ method not found in `std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `as_str` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:108:57
[INFO] [stderr]     |
[INFO] [stderr] 108 |         key.push_str(key.repeat(text.len() / key.len()).as_str());
[INFO] [stderr]     |                                                         ^^^^^^ help: there is an associated function with a similar name: `as_ptr`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `chars` found for struct `std::vec::Vec<u8>` in the current scope
[INFO] [stderr]    --> src/main.rs:112:23
[INFO] [stderr]     |
[INFO] [stderr] 112 |     for (k, t) in key.chars().zip(text.chars()) {
[INFO] [stderr]     |                       ^^^^^ method not found in `std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: can't compare `std::vec::Vec<u8>` with `&str`
[INFO] [stderr]    --> src/main.rs:125:9
[INFO] [stderr]     |
[INFO] [stderr] 125 |         assert_eq!(file_or_str("this is a string").unwrap(), "this is a string")
[INFO] [stderr]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `std::vec::Vec<u8> == &str`
[INFO] [stderr]     |
[INFO] [stderr]     = help: the trait `std::cmp::PartialEq<&str>` is not implemented for `std::vec::Vec<u8>`
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/main.rs:159:13
[INFO] [stderr]     |
[INFO] [stderr] 159 |             &file_or_str(matches.value_of("caesar").unwrap()).unwrap(),
[INFO] [stderr]     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `str`, found struct `std::vec::Vec`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected reference `&str`
[INFO] [stderr]                found reference `&std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/main.rs:163:26
[INFO] [stderr]     |
[INFO] [stderr] 163 |         value = xor(key, &file_or_str(matches.value_of("xor").unwrap()).unwrap());
[INFO] [stderr]     |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `str`, found struct `std::vec::Vec`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected reference `&str`
[INFO] [stderr]                found reference `&std::vec::Vec<u8>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 6 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `julius`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "4f0bfc1a7697a60364d5386d2caa7634d8d0d7db9e308ad7f93be431153df74b"`
[INFO] running `"docker" "rm" "-f" "4f0bfc1a7697a60364d5386d2caa7634d8d0d7db9e308ad7f93be431153df74b"`
[INFO] [stdout] 4f0bfc1a7697a60364d5386d2caa7634d8d0d7db9e308ad7f93be431153df74b
