[INFO] updating cached repository https://github.com/millere/solitaire-rs [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] 7cd41df1f8270e079da2331906d0a67853099ae1 [INFO] testing millere/solitaire-rs against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmillere%2Fsolitaire-rs" "/workspace/builds/worker-3/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-3/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/millere/solitaire-rs on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/millere/solitaire-rs [INFO] finished tweaking git repo https://github.com/millere/solitaire-rs [INFO] tweaked toml for git repo https://github.com/millere/solitaire-rs written to /workspace/builds/worker-3/source/Cargo.toml [INFO] crate git repo https://github.com/millere/solitaire-rs already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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" "+1.44.0" "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] 65d5ddae949feb0badb2eb17125521e40da7166b56302c20d3ca7dae65a205df [INFO] running `"docker" "start" "-a" "65d5ddae949feb0badb2eb17125521e40da7166b56302c20d3ca7dae65a205df"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling solitaire v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error: invalid suffix `i` for integer literal [INFO] [stderr] --> src/deck.rs:98:24 [INFO] [stderr] | [INFO] [stderr] 98 | for _ in range(0i, count) { [INFO] [stderr] | ^^ invalid suffix `i` [INFO] [stderr] | [INFO] [stderr] = help: the suffix must be one of the integral types (`u32`, `isize`, etc) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `std::iter::range_inclusive` [INFO] [stderr] --> src/deck.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use std::iter::range_inclusive; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `range_inclusive` in `iter` [INFO] [stderr] [INFO] [stderr] error: cannot find attribute `deriving` in this scope [INFO] [stderr] --> src/card.rs:1:3 [INFO] [stderr] | [INFO] [stderr] 1 | #[deriving(PartialEq, Show, Clone)] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: cannot find attribute `deriving` in this scope [INFO] [stderr] --> src/deck.rs:7:3 [INFO] [stderr] | [INFO] [stderr] 7 | #[deriving(Clone, PartialEq, Show)] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/card.rs:5:11 [INFO] [stderr] | [INFO] [stderr] 5 | Clubs(uint), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/card.rs:6:14 [INFO] [stderr] | [INFO] [stderr] 6 | Diamonds(uint), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/card.rs:7:12 [INFO] [stderr] | [INFO] [stderr] 7 | Hearts(uint), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/card.rs:8:12 [INFO] [stderr] | [INFO] [stderr] 8 | Spades(uint), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/card.rs:12:34 [INFO] [stderr] | [INFO] [stderr] 12 | pub fn count_index(&self) -> uint { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0531]: cannot find tuple struct or tuple variant `Clubs` in this scope [INFO] [stderr] --> src/card.rs:14:13 [INFO] [stderr] | [INFO] [stderr] 14 | Clubs(i) => i, [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Clubs; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0531]: cannot find tuple struct or tuple variant `Diamonds` in this scope [INFO] [stderr] --> src/card.rs:15:13 [INFO] [stderr] | [INFO] [stderr] 15 | Diamonds(i) => i + 13, [INFO] [stderr] | ^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Diamonds; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0531]: cannot find tuple struct or tuple variant `Hearts` in this scope [INFO] [stderr] --> src/card.rs:16:13 [INFO] [stderr] | [INFO] [stderr] 16 | Hearts(i) => i + 26, [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Hearts; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0531]: cannot find tuple struct or tuple variant `Spades` in this scope [INFO] [stderr] --> src/card.rs:17:13 [INFO] [stderr] | [INFO] [stderr] 17 | Spades(i) => i + 39, [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Spades; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:12:15 [INFO] [stderr] | [INFO] [stderr] 12 | impl Iterator for Deck { [INFO] [stderr] | - ^^^^ not found in this scope [INFO] [stderr] | | [INFO] [stderr] | help: you might be missing a type parameter: `` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:13:34 [INFO] [stderr] | [INFO] [stderr] 12 | impl Iterator for Deck { [INFO] [stderr] | - help: you might be missing a type parameter: `` [INFO] [stderr] 13 | fn next(&mut self) -> Option { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `Clubs` in this scope [INFO] [stderr] --> src/deck.rs:23:25 [INFO] [stderr] | [INFO] [stderr] 23 | deck.d.push(Clubs(i)); [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Clubs; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `Diamonds` in this scope [INFO] [stderr] --> src/deck.rs:26:25 [INFO] [stderr] | [INFO] [stderr] 26 | deck.d.push(Diamonds(i)); [INFO] [stderr] | ^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Diamonds; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `Hearts` in this scope [INFO] [stderr] --> src/deck.rs:29:25 [INFO] [stderr] | [INFO] [stderr] 29 | deck.d.push(Hearts(i)); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Hearts; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `Spades` in this scope [INFO] [stderr] --> src/deck.rs:32:25 [INFO] [stderr] | [INFO] [stderr] 32 | deck.d.push(Spades(i)); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::Spades; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerA` in this scope [INFO] [stderr] --> src/deck.rs:35:21 [INFO] [stderr] | [INFO] [stderr] 35 | deck.d.push(JokerA); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerA; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerB` in this scope [INFO] [stderr] --> src/deck.rs:36:21 [INFO] [stderr] | [INFO] [stderr] 36 | deck.d.push(JokerB); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerB; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:42:24 [INFO] [stderr] | [INFO] [stderr] 42 | let a = 'A' as uint - 1; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:48:40 [INFO] [stderr] | [INFO] [stderr] 48 | deck.with_key_helper(*e as uint - a); [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:54:38 [INFO] [stderr] | [INFO] [stderr] 54 | fn with_key_helper(&mut self, i: uint) { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerA` in this scope [INFO] [stderr] --> src/deck.rs:55:25 [INFO] [stderr] | [INFO] [stderr] 55 | self.move_joker(JokerA, 1); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerA; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerB` in this scope [INFO] [stderr] --> src/deck.rs:56:25 [INFO] [stderr] | [INFO] [stderr] 56 | self.move_joker(JokerB, 2); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerB; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/deck.rs:84:47 [INFO] [stderr] | [INFO] [stderr] 84 | pub fn gen_keystream_letter(&mut self) -> uint { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerA` in this scope [INFO] [stderr] --> src/deck.rs:85:25 [INFO] [stderr] | [INFO] [stderr] 85 | self.move_joker(JokerA, 1); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerA; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerB` in this scope [INFO] [stderr] --> src/deck.rs:86:25 [INFO] [stderr] | [INFO] [stderr] 86 | self.move_joker(JokerB, 2); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerB; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `int` in this scope [INFO] [stderr] --> src/deck.rs:96:50 [INFO] [stderr] | [INFO] [stderr] 96 | pub fn move_joker(&mut self, j: Card, count: int) { [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `range` in this scope [INFO] [stderr] --> src/deck.rs:98:18 [INFO] [stderr] | [INFO] [stderr] 98 | for _ in range(0i, count) { [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerA` in this scope [INFO] [stderr] --> src/deck.rs:120:51 [INFO] [stderr] | [INFO] [stderr] 120 | let ai = self.d.as_slice().position_elem(&JokerA).unwrap(); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerA; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `JokerB` in this scope [INFO] [stderr] --> src/deck.rs:121:51 [INFO] [stderr] | [INFO] [stderr] 121 | let bi = self.d.as_slice().position_elem(&JokerB).unwrap(); [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use card::Card::JokerB; [INFO] [stderr] | [INFO] [stderr] [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(globs)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0107]: wrong number of type arguments: expected 0, found 1 [INFO] [stderr] --> src/deck.rs:12:15 [INFO] [stderr] | [INFO] [stderr] 12 | impl Iterator for Deck { [INFO] [stderr] | ^^^^ unexpected type argument [INFO] [stderr] [INFO] [stderr] error: aborting due to 35 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0107, E0412, E0425, E0432, E0531, E0554. [INFO] [stderr] For more information about an error, try `rustc --explain E0107`. [INFO] [stderr] error: could not compile `solitaire`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "65d5ddae949feb0badb2eb17125521e40da7166b56302c20d3ca7dae65a205df"` [INFO] running `"docker" "rm" "-f" "65d5ddae949feb0badb2eb17125521e40da7166b56302c20d3ca7dae65a205df"` [INFO] [stdout] 65d5ddae949feb0badb2eb17125521e40da7166b56302c20d3ca7dae65a205df