[INFO] updating cached repository subdir/pkb [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/subdir/pkb [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/subdir/pkb" "work/ex/clippy-test-run/sources/stable/gh/subdir/pkb"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/subdir/pkb'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/subdir/pkb" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/subdir/pkb"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/subdir/pkb'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 823bc3e20367ff8c6012dd3a341cd7fb6385c459 [INFO] sha for GitHub repo subdir/pkb: 823bc3e20367ff8c6012dd3a341cd7fb6385c459 [INFO] validating manifest of subdir/pkb on toolchain stable [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of subdir/pkb on toolchain stable+rustflags=-Dclippy::into_iter_on_array [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing subdir/pkb [INFO] finished frobbing subdir/pkb [INFO] frobbed toml for subdir/pkb written to work/ex/clippy-test-run/sources/stable/gh/subdir/pkb/Cargo.toml [INFO] started frobbing subdir/pkb [INFO] finished frobbing subdir/pkb [INFO] frobbed toml for subdir/pkb written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/subdir/pkb/Cargo.toml [INFO] crate subdir/pkb has a lockfile. skipping [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] linting subdir/pkb against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-2/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/subdir/pkb:/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=forbid" "-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" "+stable" "clippy" "--frozen" "--all" "--all-targets"` [INFO] [stdout] f2b1ae31549ed1ed625e008e7aa0f7c6c4df55bc7ee149fbdac01f1d1a619f52 [INFO] running `"docker" "start" "-a" "f2b1ae31549ed1ed625e008e7aa0f7c6c4df55bc7ee149fbdac01f1d1a619f52"` [INFO] [stderr] Checking either v1.2.0 [INFO] [stderr] Compiling derive_more v0.6.2 [INFO] [stderr] Checking itertools v0.6.5 [INFO] [stderr] Checking pokerbot v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/util/ordered_iter.rs:106:71 [INFO] [stderr] | [INFO] [stderr] 106 | fn new(order: O, iter: I) -> Self { Self { iter: iter.peekable(), order: order } } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `order` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::redundant_field_names)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/util/ordered_iter.rs:160:71 [INFO] [stderr] | [INFO] [stderr] 160 | fn new(order: O, iter: I) -> Self { Self { iter: iter.peekable(), order: order } } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `order` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/card.rs:39:16 [INFO] [stderr] | [INFO] [stderr] 39 | Self { value: value, suit: suit } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `value` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/card.rs:39:30 [INFO] [stderr] | [INFO] [stderr] 39 | Self { value: value, suit: suit } [INFO] [stderr] | ^^^^^^^^^^ help: replace it with: `suit` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/shuffle.rs:12:16 [INFO] [stderr] | [INFO] [stderr] 12 | Self { vec: vec, taken_count: 0 } [INFO] [stderr] | ^^^^^^^^ help: replace it with: `vec` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/shuffle.rs:17:38 [INFO] [stderr] | [INFO] [stderr] 17 | LazyShuffledIter{ vec: self, rng: rng } [INFO] [stderr] | ^^^^^^^^ help: replace it with: `rng` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct.rs:20:16 [INFO] [stderr] | [INFO] [stderr] 20 | Self { primary: primary, secondary: secondary } [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: replace it with: `primary` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct.rs:20:34 [INFO] [stderr] | [INFO] [stderr] 20 | Self { primary: primary, secondary: secondary } [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `secondary` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct_ordered.rs:23:16 [INFO] [stderr] | [INFO] [stderr] 23 | Self { higher: higher, lower: lower } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `higher` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct_ordered.rs:23:32 [INFO] [stderr] | [INFO] [stderr] 23 | Self { higher: higher, lower: lower } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `lower` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/straight.rs:18:16 [INFO] [stderr] | [INFO] [stderr] 18 | Self { higher: higher } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `higher` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/flush.rs:17:16 [INFO] [stderr] | [INFO] [stderr] 17 | Self { values: values } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `values` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/straight_flush.rs:16:53 [INFO] [stderr] | [INFO] [stderr] 16 | pub fn new(straight: Straight) -> Self { Self { straight: straight } } [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ help: replace it with: `straight` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:19:16 [INFO] [stderr] | [INFO] [stderr] 19 | Self { player: player, stake: stake } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `player` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:19:32 [INFO] [stderr] | [INFO] [stderr] 19 | Self { player: player, stake: stake } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `stake` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:93:35 [INFO] [stderr] | [INFO] [stderr] 93 | Active(ActiveBettor { bettor: bettor, acted: false }) [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:103:35 [INFO] [stderr] | [INFO] [stderr] 103 | Active(ActiveBettor { bettor: bettor, acted: true }) [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:126:16 [INFO] [stderr] | [INFO] [stderr] 126 | Self { bettor: bettor } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:139:16 [INFO] [stderr] | [INFO] [stderr] 139 | Self { bettor: bettor } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:361:89 [INFO] [stderr] | [INFO] [stderr] 361 | Err(error) => RoundState::InvalidBet(InvalidBet{ bettors: self.bettors, error: error }), [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `error` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:377:21 [INFO] [stderr] | [INFO] [stderr] 377 | bettor: bettor, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/util/ordered_iter.rs:106:71 [INFO] [stderr] | [INFO] [stderr] 106 | fn new(order: O, iter: I) -> Self { Self { iter: iter.peekable(), order: order } } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `order` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::redundant_field_names)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/util/ordered_iter.rs:160:71 [INFO] [stderr] | [INFO] [stderr] 160 | fn new(order: O, iter: I) -> Self { Self { iter: iter.peekable(), order: order } } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `order` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/card.rs:39:16 [INFO] [stderr] | [INFO] [stderr] 39 | Self { value: value, suit: suit } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `value` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/card.rs:39:30 [INFO] [stderr] | [INFO] [stderr] 39 | Self { value: value, suit: suit } [INFO] [stderr] | ^^^^^^^^^^ help: replace it with: `suit` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/shuffle.rs:12:16 [INFO] [stderr] | [INFO] [stderr] 12 | Self { vec: vec, taken_count: 0 } [INFO] [stderr] | ^^^^^^^^ help: replace it with: `vec` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/shuffle.rs:17:38 [INFO] [stderr] | [INFO] [stderr] 17 | LazyShuffledIter{ vec: self, rng: rng } [INFO] [stderr] | ^^^^^^^^ help: replace it with: `rng` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct.rs:20:16 [INFO] [stderr] | [INFO] [stderr] 20 | Self { primary: primary, secondary: secondary } [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: replace it with: `primary` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct.rs:20:34 [INFO] [stderr] | [INFO] [stderr] 20 | Self { primary: primary, secondary: secondary } [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `secondary` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct_ordered.rs:23:16 [INFO] [stderr] | [INFO] [stderr] 23 | Self { higher: higher, lower: lower } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `higher` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/distinct_ordered.rs:23:32 [INFO] [stderr] | [INFO] [stderr] 23 | Self { higher: higher, lower: lower } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `lower` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/straight.rs:18:16 [INFO] [stderr] | [INFO] [stderr] 18 | Self { higher: higher } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `higher` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/flush.rs:17:16 [INFO] [stderr] | [INFO] [stderr] 17 | Self { values: values } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `values` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/rank/straight_flush.rs:16:53 [INFO] [stderr] | [INFO] [stderr] 16 | pub fn new(straight: Straight) -> Self { Self { straight: straight } } [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ help: replace it with: `straight` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:19:16 [INFO] [stderr] | [INFO] [stderr] 19 | Self { player: player, stake: stake } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `player` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:19:32 [INFO] [stderr] | [INFO] [stderr] 19 | Self { player: player, stake: stake } [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `stake` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:93:35 [INFO] [stderr] | [INFO] [stderr] 93 | Active(ActiveBettor { bettor: bettor, acted: false }) [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:103:35 [INFO] [stderr] | [INFO] [stderr] 103 | Active(ActiveBettor { bettor: bettor, acted: true }) [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:126:16 [INFO] [stderr] | [INFO] [stderr] 126 | Self { bettor: bettor } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:139:16 [INFO] [stderr] | [INFO] [stderr] 139 | Self { bettor: bettor } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:361:89 [INFO] [stderr] | [INFO] [stderr] 361 | Err(error) => RoundState::InvalidBet(InvalidBet{ bettors: self.bettors, error: error }), [INFO] [stderr] | ^^^^^^^^^^^^ help: replace it with: `error` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [INFO] [stderr] [INFO] [stderr] warning: redundant field names in struct initialization [INFO] [stderr] --> src/game/betting.rs:377:21 [INFO] [stderr] | [INFO] [stderr] 377 | bettor: bettor, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: replace it with: `bettor` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names [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(const_fn)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: #![feature] may not be used on the stable release channel [INFO] [stderr] --> src/lib.rs:2:1 [INFO] [stderr] | [INFO] [stderr] 2 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: Could not compile `pokerbot`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [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(const_fn)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: #![feature] may not be used on the stable release channel [INFO] [stderr] --> src/lib.rs:2:1 [INFO] [stderr] | [INFO] [stderr] 2 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: Could not compile `pokerbot`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f2b1ae31549ed1ed625e008e7aa0f7c6c4df55bc7ee149fbdac01f1d1a619f52"` [INFO] running `"docker" "rm" "-f" "f2b1ae31549ed1ed625e008e7aa0f7c6c4df55bc7ee149fbdac01f1d1a619f52"` [INFO] [stdout] f2b1ae31549ed1ed625e008e7aa0f7c6c4df55bc7ee149fbdac01f1d1a619f52