From 99ba6050e3a08b687494b4081bc3d8a0458a4fcc Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 19 Jun 2022 00:48:30 +0000 Subject: [PATCH] Remove unneeded extern crate --- src/i18n.rs | 3 --- src/opts.rs | 2 -- src/parser/mod.rs | 2 -- 3 files changed, 7 deletions(-) diff --git a/src/i18n.rs b/src/i18n.rs index 632af9f..215b3af 100644 --- a/src/i18n.rs +++ b/src/i18n.rs @@ -1,6 +1,3 @@ -#[cfg(windows)] -extern crate winapi; - use crate::utils::get_exe_path_else_current; use gettext::Catalog; use std::fs::File; diff --git a/src/opts.rs b/src/opts.rs index 0018fc0..a58f1a5 100644 --- a/src/opts.rs +++ b/src/opts.rs @@ -1,5 +1,3 @@ -extern crate getopts; - use crate::ext::use_or_not::UseOrNot; use crate::gettext; use crate::list::NonTailList; diff --git a/src/parser/mod.rs b/src/parser/mod.rs index e007d8a..e280a05 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -1,4 +1,2 @@ -extern crate html_parser; - pub mod description; pub mod metadata;