Upgrade to rust 2018

This commit is contained in:
Thomas Forgione 2018-12-10 15:01:59 +01:00
parent 749692bb07
commit 709948b6c0
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
3 changed files with 1 additions and 5 deletions

View File

@ -2,6 +2,7 @@
name = "mars"
version = "0.1.0"
authors = ["Thomas Forgione <thomas@forgione.fr>"]
edition = "2018"
[dependencies]
dirs = "1.0.4"

View File

@ -1,7 +1,3 @@
extern crate dirs;
extern crate notify_rust;
extern crate hyper;
use std::io;
use std::process::{Command, ExitStatus};
use std::path::PathBuf;

View File

@ -18,7 +18,6 @@ use mars::{GeneralBuilder, builder_arguments_from_string};
fn main() {
let (tx, rx) = mpsc::channel();
let tasks = Arc::new(Mutex::new(vec![]));