chore(syntax): Remove extern crate imports where not needed

This commit is contained in:
Lewin Bormann
2019-06-09 09:24:15 +02:00
parent db4077983f
commit ce9b6d8dd7
5 changed files with 0 additions and 28 deletions

View File

@@ -6,11 +6,6 @@
//!
//! Copyright (c) 2016 Google, Inc. (Lewin Bormann <lbo@spheniscida.de>)
extern crate hyper;
extern crate hyper_native_tls;
extern crate yup_oauth2;
extern crate google_drive3;
use std::path::Path;
use hyper::net::HttpsConnector;

View File

@@ -24,9 +24,6 @@
//!
//! Copyright (c) 2016 Google, Inc. (Lewin Bormann <lbo@spheniscida.de>)
//!
extern crate base64;
extern crate hyper;
extern crate hyper_native_tls;
use std::env;
use std::time;

View File

@@ -2,9 +2,6 @@
//
// Refer to the project root for licensing information.
//
extern crate serde_json;
extern crate url;
use std::convert::AsRef;
use std::error::Error;
use std::io;

View File

@@ -65,24 +65,9 @@
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate base64;
extern crate chrono;
extern crate hyper;
extern crate hyper_tls;
#[cfg(test)]
extern crate log;
#[cfg(test)]
#[macro_use]
extern crate yup_hyper_mock as hyper_mock;
extern crate itertools;
#[cfg(test)]
extern crate tokio;
extern crate tokio_threadpool;
extern crate url;
mod authenticator;
mod authenticator_delegate;

View File

@@ -3,8 +3,6 @@
// See project root for licensing information.
//
extern crate serde_json;
use std::collections::hash_map::DefaultHasher;
use std::collections::HashMap;
use std::error::Error;