From ac3627179f83647cd5be8308a354385e03581450 Mon Sep 17 00:00:00 2001 From: Damjan Georgievski Date: Sat, 21 Jul 2018 20:22:38 +0200 Subject: [PATCH] insignificant changes still experimenting with *my* rust style --- src/main.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index b4b1db3..87e7cf3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,8 +5,7 @@ extern crate futures; extern crate tar; extern crate htmlescape; extern crate percent_encoding; -#[macro_use] -extern crate clap; +#[macro_use] extern crate clap; #[macro_use] extern crate log; mod channel; @@ -16,9 +15,7 @@ use actix_web::server; use actix_web::actix; use clap::Arg; -use std::io; - -fn main() -> Result<(), io::Error> { +fn main() -> Result<(), std::io::Error> { let app = clap::App::new(crate_name!()) .author(crate_authors!("\n")) .version(crate_version!())