Remove some unnecessary "extern crate" statements

This commit is contained in:
Daniel Hofstetter 2023-04-09 14:46:11 +02:00
parent 2f6c505ff2
commit 4355fb7f78
5 changed files with 0 additions and 8 deletions

View file

@ -7,8 +7,6 @@
/* Last synced with: sync (GNU coreutils) 8.13 */
extern crate libc;
use clap::{crate_version, Arg, ArgAction, Command};
#[cfg(any(target_os = "linux", target_os = "android"))]
use nix::errno::Errno;
@ -34,7 +32,6 @@ static ARG_FILES: &str = "files";
#[cfg(unix)]
mod platform {
use super::libc;
#[cfg(any(target_os = "linux", target_os = "android"))]
use std::fs::File;
#[cfg(any(target_os = "linux", target_os = "android"))]

View file

@ -11,7 +11,6 @@
// spell-checker:ignore DATETIME subsecond (arch) bitrig ; (fs) cifs smbfs
extern crate time;
use time::macros::format_description;
use time::UtcOffset;

View file

@ -227,7 +227,6 @@ impl Utmpx {
let (hostname, display) = host.split_once(':').unwrap_or((&host, ""));
if !hostname.is_empty() {
extern crate dns_lookup;
use dns_lookup::{getaddrinfo, AddrInfoHints};
const AI_CANONNAME: i32 = 0x2;

View file

@ -200,8 +200,6 @@ impl Display for BackupError {
pub mod arguments {
use clap::ArgAction;
extern crate clap;
pub static OPT_BACKUP: &str = "backupopt_backup";
pub static OPT_BACKUP_NO_ARG: &str = "backupopt_b";
pub static OPT_SUFFIX: &str = "backupopt_suffix";

View file

@ -1,7 +1,6 @@
// Copyright (C) ~ Roy Ivy III <rivy.dev@gmail.com>; MIT license
// spell-checker:ignore backticks
extern crate proc_macro;
use std::{fs::File, io::Read, path::PathBuf};
use proc_macro::{Literal, TokenStream, TokenTree};