Upgrade to rust 2018
This commit is contained in:
parent
749692bb07
commit
709948b6c0
|
@ -2,6 +2,7 @@
|
|||
name = "mars"
|
||||
version = "0.1.0"
|
||||
authors = ["Thomas Forgione <thomas@forgione.fr>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
dirs = "1.0.4"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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![]));
|
||||
|
|
Loading…
Reference in New Issue