From 839c1b1eb5b19e38cf85ae96e87154d4ee7f6ec4 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Thu, 28 May 2020 21:01:13 +0300 Subject: [PATCH] bin.rs: remove useless #[macro_use] --- src/bin.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin.rs b/src/bin.rs index 1a8d2558..b9764fbe 100644 --- a/src/bin.rs +++ b/src/bin.rs @@ -42,10 +42,9 @@ extern crate termion; #[macro_use] extern crate nom; +extern crate bitflags; extern crate serde_json; extern crate smallvec; -#[macro_use] -extern crate bitflags; #[global_allocator] static GLOBAL: System = System;