From 39a4a52f80f29cc273ae5297076fbe203b918ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Wed, 22 Aug 2018 07:14:55 +1200 Subject: [PATCH] Restore 1.20 compatibility --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index f4a9942..94156b4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,6 @@ extern crate watchexec; -use watchexec::{cli::get_args, run}; +use watchexec::{cli, run}; fn main() { - run(get_args()); + run(cli::get_args()); }