Oct 21 22:59:26.924 INFO checking to-directory-0.1.0 against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192 Oct 21 22:59:26.926 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192/worker-3/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/pr-55192/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/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 +155510e377ae2a8d8ee0dad1a5f809c9062a5526-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 21 22:59:27.115 INFO blam! d015e4623b10a2c3c5fece835e109471633ada313e9af3d753de90fc9f210145 Oct 21 22:59:27.122 INFO running `"docker" "start" "-a" "d015e4623b10a2c3c5fece835e109471633ada313e9af3d753de90fc9f210145"` Oct 21 22:59:27.634 INFO kablam! usermod: no changes Oct 21 22:59:27.661 INFO kablam! warning: An explicit [[bin]] section is specified in Cargo.toml which currently Oct 21 22:59:27.661 INFO kablam! disables Cargo from automatically inferring other binary targets. Oct 21 22:59:27.661 INFO kablam! This inference behavior will change in the Rust 2018 edition and the following Oct 21 22:59:27.661 INFO kablam! files will be included as a binary target: Oct 21 22:59:27.661 INFO kablam! Oct 21 22:59:27.661 INFO kablam! * /source/src/main.rs Oct 21 22:59:27.661 INFO kablam! Oct 21 22:59:27.661 INFO kablam! This is likely to break cargo build or cargo test as these files may not be Oct 21 22:59:27.661 INFO kablam! ready to be compiled as a binary target today. You can future-proof yourself Oct 21 22:59:27.661 INFO kablam! and disable this warning by adding `autobins = false` to your [package] Oct 21 22:59:27.661 INFO kablam! section. You may also move the files to a location where Cargo would not Oct 21 22:59:27.661 INFO kablam! automatically infer them to be a target, such as in subfolders. Oct 21 22:59:27.661 INFO kablam! Oct 21 22:59:27.661 INFO kablam! For more information on this warning you can consult Oct 21 22:59:27.661 INFO kablam! https://github.com/rust-lang/cargo/issues/5330 Oct 21 22:59:27.661 INFO kablam! warning: path `/source/src/main.rs` was erroneously implicitly accepted for binary `to`, Oct 21 22:59:27.661 INFO kablam! please set bin.path in Cargo.toml Oct 21 22:59:27.708 INFO kablam! Checking bincode v0.5.9 Oct 21 22:59:29.040 INFO kablam! Checking to-directory v0.1.0 (/source) Oct 21 22:59:30.208 INFO kablam! warning: unused import: `std::fmt` Oct 21 22:59:30.208 INFO kablam! --> src/types.rs:2:5 Oct 21 22:59:30.208 INFO kablam! | Oct 21 22:59:30.208 INFO kablam! 2 | use std::fmt; Oct 21 22:59:30.208 INFO kablam! | ^^^^^^^^ Oct 21 22:59:30.208 INFO kablam! | Oct 21 22:59:30.208 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 22:59:30.208 INFO kablam! Oct 21 22:59:30.209 INFO kablam! warning: use of deprecated item 'std::env::home_dir': This function's behavior is unexpected and probably not what you want. Consider using the home_dir function from https://crates.io/crates/dirs instead. Oct 21 22:59:30.209 INFO kablam! --> src/dir.rs:6:31 Oct 21 22:59:30.209 INFO kablam! | Oct 21 22:59:30.209 INFO kablam! 6 | let mut directory = match env::home_dir() { Oct 21 22:59:30.209 INFO kablam! | ^^^^^^^^^^^^^ Oct 21 22:59:30.209 INFO kablam! | Oct 21 22:59:30.209 INFO kablam! = note: #[warn(deprecated)] on by default Oct 21 22:59:30.209 INFO kablam! Oct 21 22:59:30.297 INFO kablam! warning: unused variable: `directory` Oct 21 22:59:30.299 INFO kablam! --> src/dir.rs:16:15 Oct 21 22:59:30.299 INFO kablam! | Oct 21 22:59:30.299 INFO kablam! 16 | pub fn mkdirp(directory: &Path) -> ToResult<()> { Oct 21 22:59:30.299 INFO kablam! | ^^^^^^^^^ help: consider using `_directory` instead Oct 21 22:59:30.299 INFO kablam! | Oct 21 22:59:30.299 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 22:59:30.299 INFO kablam! Oct 21 22:59:30.299 INFO kablam! warning: unused variable: `extension` Oct 21 22:59:30.299 INFO kablam! --> src/database.rs:37:21 Oct 21 22:59:30.299 INFO kablam! | Oct 21 22:59:30.299 INFO kablam! 37 | if let Some(extension) = directory.extension() { Oct 21 22:59:30.299 INFO kablam! | ^^^^^^^^^ help: consider using `_extension` instead Oct 21 22:59:30.299 INFO kablam! Oct 21 22:59:30.299 INFO kablam! warning: unused variable: `err` Oct 21 22:59:30.299 INFO kablam! --> src/database.rs:95:17 Oct 21 22:59:30.299 INFO kablam! | Oct 21 22:59:30.299 INFO kablam! 95 | Err(err) => { Oct 21 22:59:30.299 INFO kablam! | ^^^ help: consider using `_err` instead Oct 21 22:59:30.299 INFO kablam! Oct 21 22:59:30.336 INFO kablam! warning: unused import: `std::fmt` Oct 21 22:59:30.336 INFO kablam! --> src/types.rs:2:5 Oct 21 22:59:30.336 INFO kablam! | Oct 21 22:59:30.336 INFO kablam! 2 | use std::fmt; Oct 21 22:59:30.336 INFO kablam! | ^^^^^^^^ Oct 21 22:59:30.336 INFO kablam! | Oct 21 22:59:30.336 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 22:59:30.336 INFO kablam! Oct 21 22:59:30.348 INFO kablam! warning: use of deprecated item 'std::env::home_dir': This function's behavior is unexpected and probably not what you want. Consider using the home_dir function from https://crates.io/crates/dirs instead. Oct 21 22:59:30.348 INFO kablam! --> src/dir.rs:6:31 Oct 21 22:59:30.348 INFO kablam! | Oct 21 22:59:30.348 INFO kablam! 6 | let mut directory = match env::home_dir() { Oct 21 22:59:30.348 INFO kablam! | ^^^^^^^^^^^^^ Oct 21 22:59:30.348 INFO kablam! | Oct 21 22:59:30.348 INFO kablam! = note: #[warn(deprecated)] on by default Oct 21 22:59:30.348 INFO kablam! Oct 21 22:59:30.448 INFO kablam! warning: unused variable: `directory` Oct 21 22:59:30.448 INFO kablam! --> src/dir.rs:16:15 Oct 21 22:59:30.448 INFO kablam! | Oct 21 22:59:30.448 INFO kablam! 16 | pub fn mkdirp(directory: &Path) -> ToResult<()> { Oct 21 22:59:30.448 INFO kablam! | ^^^^^^^^^ help: consider using `_directory` instead Oct 21 22:59:30.448 INFO kablam! | Oct 21 22:59:30.448 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 22:59:30.448 INFO kablam! Oct 21 22:59:30.448 INFO kablam! warning: unused variable: `extension` Oct 21 22:59:30.448 INFO kablam! --> src/database.rs:37:21 Oct 21 22:59:30.448 INFO kablam! | Oct 21 22:59:30.448 INFO kablam! 37 | if let Some(extension) = directory.extension() { Oct 21 22:59:30.448 INFO kablam! | ^^^^^^^^^ help: consider using `_extension` instead Oct 21 22:59:30.448 INFO kablam! Oct 21 22:59:30.448 INFO kablam! warning: unused variable: `err` Oct 21 22:59:30.448 INFO kablam! --> src/database.rs:95:17 Oct 21 22:59:30.448 INFO kablam! | Oct 21 22:59:30.448 INFO kablam! 95 | Err(err) => { Oct 21 22:59:30.448 INFO kablam! | ^^^ help: consider using `_err` instead Oct 21 22:59:30.448 INFO kablam! Oct 21 22:59:30.506 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 2.85s Oct 21 22:59:30.507 INFO kablam! su: No module specific data is present Oct 21 22:59:30.799 INFO running `"docker" "rm" "-f" "d015e4623b10a2c3c5fece835e109471633ada313e9af3d753de90fc9f210145"` Oct 21 22:59:30.898 INFO blam! d015e4623b10a2c3c5fece835e109471633ada313e9af3d753de90fc9f210145