[INFO] updating cached repository leifwalsh/tea [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/leifwalsh/tea [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/leifwalsh/tea" "work/ex/beta-1.38-1/sources/1.37.0/gh/leifwalsh/tea"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/leifwalsh/tea'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/leifwalsh/tea" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/leifwalsh/tea"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/leifwalsh/tea'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] f08b62a5f1c7d0e82d5b3e1984f2319b96044589 [INFO] sha for GitHub repo leifwalsh/tea: f08b62a5f1c7d0e82d5b3e1984f2319b96044589 [INFO] validating manifest of leifwalsh/tea on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of leifwalsh/tea on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing leifwalsh/tea [INFO] finished frobbing leifwalsh/tea [INFO] frobbed toml for leifwalsh/tea written to work/ex/beta-1.38-1/sources/1.37.0/gh/leifwalsh/tea/Cargo.toml [INFO] started frobbing leifwalsh/tea [INFO] finished frobbing leifwalsh/tea [INFO] frobbed toml for leifwalsh/tea written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/leifwalsh/tea/Cargo.toml [INFO] crate leifwalsh/tea already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing leifwalsh/tea against 1.37.0 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-7/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/gh/leifwalsh/tea:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "build" "--frozen"` [INFO] [stdout] 59de461bf1ecedb7e6c390f1a38fbe6bcac41057482506ee2a08a513c826a3e9 [INFO] running `"docker" "start" "-a" "59de461bf1ecedb7e6c390f1a38fbe6bcac41057482506ee2a08a513c826a3e9"` [INFO] [stderr] Compiling tea v0.0.1 (/opt/crater/workdir) [INFO] [stderr] error[E0554]: #![feature] may not be used on the stable release channel [INFO] [stderr] --> src/lib.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(collections,core,io)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0689]: can't call method `wrapping_mul` on ambiguous numeric type `{integer}` [INFO] [stderr] --> src/cipher.rs:45:25 [INFO] [stderr] | [INFO] [stderr] 45 | let mut sum = delta.wrapping_mul(NUM_ROUNDS); [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] help: you must specify a type for this binding, like `i32` [INFO] [stderr] | [INFO] [stderr] 44 | let delta: i32 = 0x9E3779B9; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0277]: cannot add-assign `()` to `usize` [INFO] [stderr] --> src/io/reader.rs:75:33 [INFO] [stderr] | [INFO] [stderr] 75 | pos += n2; [INFO] [stderr] | ^^ no implementation for `usize += ()` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::ops::AddAssign<()>` is not implemented for `usize` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/io/reader.rs:78:33 [INFO] [stderr] | [INFO] [stderr] 78 | if n == real_bytes { [INFO] [stderr] | ^^^^^^^^^^ expected (), found usize [INFO] [stderr] | [INFO] [stderr] = note: expected type `()` [INFO] [stderr] found type `usize` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/io/reader.rs:81:59 [INFO] [stderr] | [INFO] [stderr] 81 | self.buf = self.buf.split_off(n); [INFO] [stderr] | ^ expected usize, found () [INFO] [stderr] | [INFO] [stderr] = note: expected type `usize` [INFO] [stderr] found type `()` [INFO] [stderr] [INFO] [stderr] error[E0277]: cannot add-assign `()` to `usize` [INFO] [stderr] --> src/io/reader.rs:91:29 [INFO] [stderr] | [INFO] [stderr] 91 | pos += n; [INFO] [stderr] | ^^ no implementation for `usize += ()` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::ops::AddAssign<()>` is not implemented for `usize` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/io/reader.rs:92:33 [INFO] [stderr] | [INFO] [stderr] 92 | if n == self.buf.len() { [INFO] [stderr] | ^^^^^^^^^^^^^^ expected (), found usize [INFO] [stderr] | [INFO] [stderr] = note: expected type `()` [INFO] [stderr] found type `usize` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/io/reader.rs:95:59 [INFO] [stderr] | [INFO] [stderr] 95 | self.buf = self.buf.split_off(n); [INFO] [stderr] | ^ expected usize, found () [INFO] [stderr] | [INFO] [stderr] = note: expected type `usize` [INFO] [stderr] found type `()` [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/reader.rs:100:30 [INFO] [stderr] | [INFO] [stderr] 100 | self.buf.push_all(&decrypt_chunk(&self.key, &mut self.prev, &encrypted_bytes[0..8])); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> src/io/writer.rs:60:24 [INFO] [stderr] | [INFO] [stderr] 60 | return Err(io::Error::new(io::ErrorKind::Other, "couldn't flush encrypted bytes to sink", [INFO] [stderr] | ________________________^ [INFO] [stderr] 61 | | Some(format!("sink couldn't write the last {} bytes that were already encoded", self.enc_buf.len())))); [INFO] [stderr] | |___________________________________________________________________________________________________________________________________________^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> src/io/writer.rs:69:24 [INFO] [stderr] | [INFO] [stderr] 69 | return Err(io::Error::new(io::ErrorKind::Other, "couldn't write final 8 bytes to sink", [INFO] [stderr] | ________________________^ [INFO] [stderr] 70 | | Some(format!("sink only accepted {} bytes, can't close this writer", written)))); [INFO] [stderr] | |_____________________________________________________________________________________________________________________^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/writer.rs:115:26 [INFO] [stderr] | [INFO] [stderr] 115 | self.buf.push_all(buf); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/writer.rs:119:22 [INFO] [stderr] | [INFO] [stderr] 119 | self.buf.push_all(&buf[..remaining]); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/writer.rs:122:26 [INFO] [stderr] | [INFO] [stderr] 122 | self.enc_buf.push_all(encrypt_chunk(&self.key, &mut self.prev, &self.buf)); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/writer.rs:132:26 [INFO] [stderr] | [INFO] [stderr] 132 | self.buf.push_all(chunk); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `push_all` found for type `std::vec::Vec` in the current scope [INFO] [stderr] --> src/io/writer.rs:137:26 [INFO] [stderr] | [INFO] [stderr] 137 | self.enc_buf.push_all(encrypt_chunk(&self.key, &mut self.prev, chunk)); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> src/io/writer.rs:159:17 [INFO] [stderr] | [INFO] [stderr] 159 | Err(io::Error::new(io::ErrorKind::Other, "can't flush when not on a 64-bit block boundary", [INFO] [stderr] | _________________^ [INFO] [stderr] 160 | | Some(format!("we have {} plaintext bytes that we can't encrypt until a full block is done", self.buf.len())))) [INFO] [stderr] | |____________________________________________________________________________________________________________________________________________^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error: aborting due to 17 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0277, E0308, E0554, E0599, E0689. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: Could not compile `tea`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "59de461bf1ecedb7e6c390f1a38fbe6bcac41057482506ee2a08a513c826a3e9"` [INFO] running `"docker" "rm" "-f" "59de461bf1ecedb7e6c390f1a38fbe6bcac41057482506ee2a08a513c826a3e9"` [INFO] [stdout] 59de461bf1ecedb7e6c390f1a38fbe6bcac41057482506ee2a08a513c826a3e9