Remove import of lazy_static

This commit is contained in:
Manish Goregaokar 2018-07-19 00:11:15 -07:00
parent c1745cde82
commit 00ba67a12b
2 changed files with 2 additions and 3 deletions

View file

@ -24,9 +24,6 @@ use rustc_plugin;
#[macro_use]
extern crate matches as matches_macro;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate if_chain;

View file

@ -2,11 +2,13 @@
#![deny(missing_docs_in_private_items)]
use lazy_static::lazy_static;
use std::{env, fmt, fs, io, path};
use std::io::Read;
use syntax::{ast, codemap};
use toml;
use std::sync::Mutex;
/// Get the configuration file from arguments.
pub fn file_from_args(
args: &[codemap::Spanned<ast::NestedMetaItemKind>],