Skip to content

Commit

Permalink
Remove unused extern crates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jseyfried committed Jan 22, 2017
1 parent 356fa2c commit 191abc4
Show file tree
Hide file tree
Showing 29 changed files with 0 additions and 76 deletions.
17 changes: 0 additions & 17 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/libproc_macro_plugin/Cargo.toml
Expand Up @@ -11,5 +11,4 @@ crate-type = ["dylib"]
log = { path = "../liblog" }
rustc_plugin = { path = "../librustc_plugin" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
proc_macro_tokens = { path = "../libproc_macro_tokens" }
1 change: 0 additions & 1 deletion src/libproc_macro_plugin/lib.rs
Expand Up @@ -88,7 +88,6 @@

extern crate rustc_plugin;
extern crate syntax;
extern crate syntax_pos;
extern crate proc_macro_tokens;
#[macro_use] extern crate log;

Expand Down
2 changes: 0 additions & 2 deletions src/libproc_macro_tokens/Cargo.toml
Expand Up @@ -10,5 +10,3 @@ crate-type = ["dylib"]

[dependencies]
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
log = { path = "../liblog" }
3 changes: 0 additions & 3 deletions src/libproc_macro_tokens/build.rs
Expand Up @@ -8,9 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

extern crate syntax;
extern crate syntax_pos;

use syntax::ast::Ident;
use syntax::codemap::DUMMY_SP;
use syntax::parse::token::{self, Token};
Expand Down
2 changes: 0 additions & 2 deletions src/libproc_macro_tokens/lib.rs
Expand Up @@ -58,8 +58,6 @@
#![feature(rustc_private)]

extern crate syntax;
extern crate syntax_pos;
extern crate log;

pub mod build;
pub mod parse;
Expand Down
2 changes: 0 additions & 2 deletions src/libproc_macro_tokens/parse.rs
Expand Up @@ -10,8 +10,6 @@

//! Parsing utilities for writing procedural macros.

extern crate syntax;

use syntax::parse::{ParseSess, filemap_to_tts};
use syntax::tokenstream::TokenStream;

Expand Down
1 change: 0 additions & 1 deletion src/librustc/Cargo.toml
Expand Up @@ -10,7 +10,6 @@ crate-type = ["dylib"]

[dependencies]
arena = { path = "../libarena" }
flate = { path = "../libflate" }
fmt_macros = { path = "../libfmt_macros" }
graphviz = { path = "../libgraphviz" }
log = { path = "../liblog" }
Expand Down
7 changes: 0 additions & 7 deletions src/librustc/lib.rs
Expand Up @@ -26,7 +26,6 @@
#![feature(associated_consts)]
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(collections)]
#![feature(conservative_impl_trait)]
#![feature(const_fn)]
#![feature(core_intrinsics)]
Expand All @@ -39,11 +38,9 @@
#![feature(slice_patterns)]
#![feature(staged_api)]
#![feature(unboxed_closures)]
#![cfg_attr(test, feature(test))]

extern crate arena;
extern crate core;
extern crate flate;
extern crate fmt_macros;
extern crate getopts;
extern crate graphviz;
Expand All @@ -52,7 +49,6 @@ extern crate rustc_llvm as llvm;
extern crate rustc_back;
extern crate rustc_data_structures;
extern crate serialize;
extern crate collections;
extern crate rustc_const_math;
extern crate rustc_errors as errors;
#[macro_use] extern crate log;
Expand All @@ -65,9 +61,6 @@ extern crate serialize as rustc_serialize; // used by deriving
// SNAP:
extern crate rustc_i128;

#[cfg(test)]
extern crate test;

#[macro_use]
mod macros;

Expand Down
1 change: 0 additions & 1 deletion src/librustc_const_eval/Cargo.toml
Expand Up @@ -11,7 +11,6 @@ crate-type = ["dylib"]
[dependencies]
arena = { path = "../libarena" }
log = { path = "../liblog" }
serialize = { path = "../libserialize" }
rustc = { path = "../librustc" }
rustc_back = { path = "../librustc_back" }
rustc_const_math = { path = "../librustc_const_math" }
Expand Down
1 change: 0 additions & 1 deletion src/librustc_const_eval/lib.rs
Expand Up @@ -40,7 +40,6 @@ extern crate rustc_data_structures;
extern crate rustc_errors;
extern crate graphviz;
extern crate syntax_pos;
extern crate serialize as rustc_serialize; // used by deriving

extern crate rustc_i128;

Expand Down
1 change: 0 additions & 1 deletion src/librustc_const_math/Cargo.toml
Expand Up @@ -9,7 +9,6 @@ path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
log = { path = "../liblog" }
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
rustc_i128 = { path = "../librustc_i128" }
1 change: 0 additions & 1 deletion src/librustc_const_math/lib.rs
Expand Up @@ -28,7 +28,6 @@
#![feature(const_fn)]
#![cfg_attr(not(stage0), feature(i128))]

extern crate log;
extern crate syntax;

// SNAP: remove use of this crate
Expand Down
1 change: 0 additions & 1 deletion src/librustc_driver/Cargo.toml
Expand Up @@ -10,7 +10,6 @@ crate-type = ["dylib"]

[dependencies]
arena = { path = "../libarena" }
flate = { path = "../libflate" }
graphviz = { path = "../libgraphviz" }
log = { path = "../liblog" }
proc_macro_plugin = { path = "../libproc_macro_plugin" }
Expand Down
1 change: 0 additions & 1 deletion src/librustc_driver/lib.rs
Expand Up @@ -32,7 +32,6 @@
#![feature(staged_api)]

extern crate arena;
extern crate flate;
extern crate getopts;
extern crate graphviz;
extern crate libc;
Expand Down
2 changes: 0 additions & 2 deletions src/librustc_errors/Cargo.toml
Expand Up @@ -9,6 +9,4 @@ path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
log = { path = "../liblog" }
serialize = { path = "../libserialize" }
syntax_pos = { path = "../libsyntax_pos" }
5 changes: 0 additions & 5 deletions src/librustc_errors/lib.rs
Expand Up @@ -23,14 +23,9 @@
#![feature(staged_api)]
#![feature(range_contains)]
#![feature(libc)]
#![feature(unicode)]

extern crate serialize;
extern crate term;
extern crate log;
extern crate libc;
extern crate std_unicode;
extern crate serialize as rustc_serialize; // used by deriving
extern crate syntax_pos;

pub use emitter::ColorConfig;
Expand Down
1 change: 0 additions & 1 deletion src/librustc_incremental/Cargo.toml
Expand Up @@ -16,4 +16,3 @@ serialize = { path = "../libserialize" }
log = { path = "../liblog" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
rustc_i128 = { path = "../librustc_i128" }
2 changes: 0 additions & 2 deletions src/librustc_incremental/lib.rs
Expand Up @@ -33,8 +33,6 @@ extern crate serialize as rustc_serialize;
extern crate syntax;
extern crate syntax_pos;

extern crate rustc_i128;

const ATTR_DIRTY: &'static str = "rustc_dirty";
const ATTR_CLEAN: &'static str = "rustc_clean";
const ATTR_DIRTY_METADATA: &'static str = "rustc_metadata_dirty";
Expand Down
1 change: 0 additions & 1 deletion src/librustc_mir/Cargo.toml
Expand Up @@ -12,7 +12,6 @@ crate-type = ["dylib"]
graphviz = { path = "../libgraphviz" }
log = { path = "../liblog" }
rustc = { path = "../librustc" }
rustc_back = { path = "../librustc_back" }
rustc_const_eval = { path = "../librustc_const_eval" }
rustc_const_math = { path = "../librustc_const_math" }
rustc_data_structures = { path = "../librustc_data_structures" }
Expand Down
1 change: 0 additions & 1 deletion src/librustc_mir/lib.rs
Expand Up @@ -31,7 +31,6 @@ extern crate graphviz as dot;
#[macro_use]
extern crate rustc;
extern crate rustc_data_structures;
extern crate rustc_back;
#[macro_use]
#[no_link]
extern crate rustc_bitflags;
Expand Down
1 change: 0 additions & 1 deletion src/librustc_passes/lib.rs
Expand Up @@ -27,7 +27,6 @@
#![feature(staged_api)]
#![feature(rustc_private)]

extern crate core;
#[macro_use]
extern crate rustc;
extern crate rustc_const_eval;
Expand Down
1 change: 0 additions & 1 deletion src/librustc_plugin/Cargo.toml
Expand Up @@ -10,7 +10,6 @@ path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
log = { path = "../liblog" }
rustc = { path = "../librustc" }
rustc_back = { path = "../librustc_back" }
rustc_metadata = { path = "../librustc_metadata" }
Expand Down
1 change: 0 additions & 1 deletion src/librustc_plugin/lib.rs
Expand Up @@ -63,7 +63,6 @@
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]

extern crate log;
#[macro_use] extern crate syntax;

extern crate rustc;
Expand Down
3 changes: 0 additions & 3 deletions src/librustc_trans/Cargo.toml
Expand Up @@ -10,9 +10,7 @@ crate-type = ["dylib"]
test = false

[dependencies]
arena = { path = "../libarena" }
flate = { path = "../libflate" }
graphviz = { path = "../libgraphviz" }
log = { path = "../liblog" }
rustc = { path = "../librustc" }
rustc_back = { path = "../librustc_back" }
Expand All @@ -25,6 +23,5 @@ rustc_incremental = { path = "../librustc_incremental" }
rustc_llvm = { path = "../librustc_llvm" }
rustc_i128 = { path = "../librustc_i128" }
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
4 changes: 0 additions & 4 deletions src/librustc_trans/lib.rs
Expand Up @@ -40,18 +40,14 @@

use rustc::dep_graph::WorkProduct;

extern crate arena;
extern crate flate;
extern crate getopts;
extern crate graphviz;
extern crate libc;
#[macro_use] extern crate rustc;
extern crate rustc_back;
extern crate rustc_data_structures;
extern crate rustc_incremental;
pub extern crate rustc_llvm as llvm;
extern crate rustc_platform_intrinsics as intrinsics;
extern crate serialize;
extern crate rustc_const_math;
extern crate rustc_const_eval;
#[macro_use]
Expand Down
1 change: 0 additions & 1 deletion src/libserialize/Cargo.toml
Expand Up @@ -9,5 +9,4 @@ path = "lib.rs"
crate-type = ["dylib", "rlib"]

[dependencies]
log = { path = "../liblog" }
rustc_i128 = { path = "../librustc_i128" }
7 changes: 0 additions & 7 deletions src/libserialize/lib.rs
Expand Up @@ -31,17 +31,10 @@ Core encoding and decoding interfaces.
#![feature(collections)]
#![feature(core_intrinsics)]
#![feature(enumset)]
#![feature(rustc_private)]
#![feature(specialization)]
#![feature(staged_api)]
#![feature(unicode)]
#![cfg_attr(test, feature(test))]

// test harness access
#[cfg(test)] extern crate test;
extern crate log;

extern crate std_unicode;
extern crate collections;

extern crate rustc_i128;
Expand Down

0 comments on commit 191abc4

Please sign in to comment.