diff -r 257b296169a8 -r bb2f301d4fe0 rust/hedgewars-checker/src/main.rs --- a/rust/hedgewars-checker/src/main.rs Tue Nov 13 16:54:40 2018 +0100 +++ b/rust/hedgewars-checker/src/main.rs Tue Nov 13 20:01:43 2018 +0300 @@ -1,20 +1,13 @@ -#[macro_use] -extern crate log; -extern crate argparse; -extern crate base64; -extern crate dirs; -extern crate ini; -extern crate netbuf; -extern crate stderrlog; -extern crate tempfile; - use argparse::{ArgumentParser, Store}; use ini::Ini; use netbuf::Buf; -use std::io::Write; -use std::net::TcpStream; -use std::process::Command; -use std::str::FromStr; +use log::{debug, warn, info}; +use std::{ + io::Write, + net::TcpStream, + process::Command, + str::FromStr +}; type CheckError = Box; @@ -219,7 +212,7 @@ info!("Using protocol number {}", protocol_number); - connect_and_run(&username, &password, protocol_number, &exe, &prefix); + connect_and_run(&username, &password, protocol_number, &exe, &prefix).unwrap(); } #[cfg(test)]