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;