From ce5702f2ced4c6904f5669324e42021041f192de Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Tue, 17 Nov 2020 21:36:39 -0500 Subject: [PATCH] Remove `extern crate`s That are no longer needed in 2018 edition Rust. --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index ad343e9..ab45791 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,9 +13,6 @@ /// The `main` function at the end handles command-line arguments. It calls one /// of the two functions above to do the work. -extern crate argparse; -extern crate byteorder; - mod index; mod read; mod write;