Oct 12 14:10:08.658 INFO checking sdiguana/RustVendingMachine against master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f for pr-54977 Oct 12 14:10:08.660 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-54977/worker-2/master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/pr-54977/master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +5af0bb83044c3fb43d59ad5f49ee5ae1a293901f-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 12 14:10:09.060 INFO blam! e78516933ffe4936562f7b062be082489cd16803687c024e006c5b1eaac3ffc3 Oct 12 14:10:09.065 INFO running `"docker" "start" "-a" "e78516933ffe4936562f7b062be082489cd16803687c024e006c5b1eaac3ffc3"` Oct 12 14:10:11.007 INFO kablam! usermod: no changes Oct 12 14:10:11.072 INFO kablam! Checking vending_machine v0.1.0 (/source) Oct 12 14:10:11.796 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.796 INFO kablam! --> src/main.rs:69:9 Oct 12 14:10:11.796 INFO kablam! | Oct 12 14:10:11.796 INFO kablam! 69 | let mut coffee = Item {name: String::from("coffee"), price: 1.25, stock: 3}; Oct 12 14:10:11.796 INFO kablam! | ----^^^^^^ Oct 12 14:10:11.796 INFO kablam! | | Oct 12 14:10:11.796 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.796 INFO kablam! | Oct 12 14:10:11.796 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 14:10:11.796 INFO kablam! Oct 12 14:10:11.796 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.796 INFO kablam! --> src/main.rs:70:9 Oct 12 14:10:11.796 INFO kablam! | Oct 12 14:10:11.797 INFO kablam! 70 | let mut fizzy_water = Item {name: String::from("cascade ice"), price: 1.5, stock: 5}; Oct 12 14:10:11.797 INFO kablam! | ----^^^^^^^^^^^ Oct 12 14:10:11.797 INFO kablam! | | Oct 12 14:10:11.797 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.797 INFO kablam! Oct 12 14:10:11.797 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.797 INFO kablam! --> src/main.rs:71:9 Oct 12 14:10:11.797 INFO kablam! | Oct 12 14:10:11.797 INFO kablam! 71 | let mut candy = Item {name: String::from("life savers"), price: 0.75, stock: 1}; Oct 12 14:10:11.797 INFO kablam! | ----^^^^^ Oct 12 14:10:11.797 INFO kablam! | | Oct 12 14:10:11.797 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.797 INFO kablam! Oct 12 14:10:11.797 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.797 INFO kablam! --> src/main.rs:72:9 Oct 12 14:10:11.797 INFO kablam! | Oct 12 14:10:11.797 INFO kablam! 72 | let mut mints = Item {name: String::from("mints"), price: 1.0, stock: 2}; Oct 12 14:10:11.797 INFO kablam! | ----^^^^^ Oct 12 14:10:11.797 INFO kablam! | | Oct 12 14:10:11.797 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.797 INFO kablam! Oct 12 14:10:11.797 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.797 INFO kablam! --> src/main.rs:74:9 Oct 12 14:10:11.797 INFO kablam! | Oct 12 14:10:11.797 INFO kablam! 74 | let mut contents = vec![coffee, fizzy_water, candy, mints]; Oct 12 14:10:11.797 INFO kablam! | ----^^^^^^^^ Oct 12 14:10:11.797 INFO kablam! | | Oct 12 14:10:11.797 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.797 INFO kablam! Oct 12 14:10:11.844 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.844 INFO kablam! --> src/main.rs:195:17 Oct 12 14:10:11.844 INFO kablam! | Oct 12 14:10:11.844 INFO kablam! 195 | let mut c = read_line(); Oct 12 14:10:11.844 INFO kablam! | ----^ Oct 12 14:10:11.844 INFO kablam! | | Oct 12 14:10:11.844 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.844 INFO kablam! Oct 12 14:10:11.844 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.844 INFO kablam! --> src/main.rs:200:17 Oct 12 14:10:11.844 INFO kablam! | Oct 12 14:10:11.844 INFO kablam! 200 | let mut q = read_line(); Oct 12 14:10:11.844 INFO kablam! | ----^ Oct 12 14:10:11.844 INFO kablam! | | Oct 12 14:10:11.844 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.844 INFO kablam! Oct 12 14:10:11.844 INFO kablam! warning: structure field `UserCredit` should have a snake case name such as `user_credit` Oct 12 14:10:11.844 INFO kablam! --> src/main.rs:53:5 Oct 12 14:10:11.844 INFO kablam! | Oct 12 14:10:11.844 INFO kablam! 53 | UserCredit: f32 Oct 12 14:10:11.844 INFO kablam! | ^^^^^^^^^^^^^^^ Oct 12 14:10:11.844 INFO kablam! | Oct 12 14:10:11.844 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 14:10:11.844 INFO kablam! Oct 12 14:10:11.856 INFO kablam! warning: variable `isValidEntry` should have a snake case name such as `is_valid_entry` Oct 12 14:10:11.856 INFO kablam! --> src/main.rs:121:9 Oct 12 14:10:11.856 INFO kablam! | Oct 12 14:10:11.856 INFO kablam! 121 | let mut isValidEntry = false; Oct 12 14:10:11.856 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 12 14:10:11.856 INFO kablam! Oct 12 14:10:11.972 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.972 INFO kablam! --> src/main.rs:69:9 Oct 12 14:10:11.972 INFO kablam! | Oct 12 14:10:11.972 INFO kablam! 69 | let mut coffee = Item {name: String::from("coffee"), price: 1.25, stock: 3}; Oct 12 14:10:11.972 INFO kablam! | ----^^^^^^ Oct 12 14:10:11.972 INFO kablam! | | Oct 12 14:10:11.972 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.972 INFO kablam! | Oct 12 14:10:11.972 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 14:10:11.972 INFO kablam! Oct 12 14:10:11.972 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.972 INFO kablam! --> src/main.rs:70:9 Oct 12 14:10:11.972 INFO kablam! | Oct 12 14:10:11.972 INFO kablam! 70 | let mut fizzy_water = Item {name: String::from("cascade ice"), price: 1.5, stock: 5}; Oct 12 14:10:11.972 INFO kablam! | ----^^^^^^^^^^^ Oct 12 14:10:11.972 INFO kablam! | | Oct 12 14:10:11.972 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.972 INFO kablam! Oct 12 14:10:11.972 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.972 INFO kablam! --> src/main.rs:71:9 Oct 12 14:10:11.973 INFO kablam! | Oct 12 14:10:11.973 INFO kablam! 71 | let mut candy = Item {name: String::from("life savers"), price: 0.75, stock: 1}; Oct 12 14:10:11.973 INFO kablam! | ----^^^^^ Oct 12 14:10:11.973 INFO kablam! | | Oct 12 14:10:11.973 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.973 INFO kablam! Oct 12 14:10:11.973 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.973 INFO kablam! --> src/main.rs:72:9 Oct 12 14:10:11.973 INFO kablam! | Oct 12 14:10:11.973 INFO kablam! 72 | let mut mints = Item {name: String::from("mints"), price: 1.0, stock: 2}; Oct 12 14:10:11.973 INFO kablam! | ----^^^^^ Oct 12 14:10:11.973 INFO kablam! | | Oct 12 14:10:11.973 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.973 INFO kablam! Oct 12 14:10:11.973 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.973 INFO kablam! --> src/main.rs:74:9 Oct 12 14:10:11.973 INFO kablam! | Oct 12 14:10:11.973 INFO kablam! 74 | let mut contents = vec![coffee, fizzy_water, candy, mints]; Oct 12 14:10:11.973 INFO kablam! | ----^^^^^^^^ Oct 12 14:10:11.973 INFO kablam! | | Oct 12 14:10:11.973 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.973 INFO kablam! Oct 12 14:10:11.992 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.992 INFO kablam! --> src/main.rs:195:17 Oct 12 14:10:11.992 INFO kablam! | Oct 12 14:10:11.992 INFO kablam! 195 | let mut c = read_line(); Oct 12 14:10:11.992 INFO kablam! | ----^ Oct 12 14:10:11.992 INFO kablam! | | Oct 12 14:10:11.992 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.992 INFO kablam! Oct 12 14:10:11.992 INFO kablam! warning: variable does not need to be mutable Oct 12 14:10:11.992 INFO kablam! --> src/main.rs:200:17 Oct 12 14:10:11.992 INFO kablam! | Oct 12 14:10:11.992 INFO kablam! 200 | let mut q = read_line(); Oct 12 14:10:11.992 INFO kablam! | ----^ Oct 12 14:10:11.992 INFO kablam! | | Oct 12 14:10:11.992 INFO kablam! | help: remove this `mut` Oct 12 14:10:11.992 INFO kablam! Oct 12 14:10:11.992 INFO kablam! warning: structure field `UserCredit` should have a snake case name such as `user_credit` Oct 12 14:10:11.992 INFO kablam! --> src/main.rs:53:5 Oct 12 14:10:11.992 INFO kablam! | Oct 12 14:10:11.992 INFO kablam! 53 | UserCredit: f32 Oct 12 14:10:11.992 INFO kablam! | ^^^^^^^^^^^^^^^ Oct 12 14:10:11.993 INFO kablam! | Oct 12 14:10:11.993 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 14:10:11.993 INFO kablam! Oct 12 14:10:12.004 INFO kablam! warning: variable `isValidEntry` should have a snake case name such as `is_valid_entry` Oct 12 14:10:12.004 INFO kablam! --> src/main.rs:121:9 Oct 12 14:10:12.004 INFO kablam! | Oct 12 14:10:12.004 INFO kablam! 121 | let mut isValidEntry = false; Oct 12 14:10:12.004 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 12 14:10:12.004 INFO kablam! Oct 12 14:10:12.046 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.01s Oct 12 14:10:12.047 INFO kablam! su: No module specific data is present Oct 12 14:10:13.318 INFO running `"docker" "rm" "-f" "e78516933ffe4936562f7b062be082489cd16803687c024e006c5b1eaac3ffc3"` Oct 12 14:10:13.520 INFO blam! e78516933ffe4936562f7b062be082489cd16803687c024e006c5b1eaac3ffc3