diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-01-14 09:21:43 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2017-01-22 01:31:02 +0000 |
| commit | 191abc42642c29f589a34e7f6cdebd081c373138 (patch) | |
| tree | 8bc4e463fcf175903ed36becffe67af65302af43 /src/librustc_errors | |
| parent | 356fa2c5db18beb5d4787ea2997f555504bb26dc (diff) | |
| download | rust-191abc42642c29f589a34e7f6cdebd081c373138.tar.gz rust-191abc42642c29f589a34e7f6cdebd081c373138.zip | |
Remove unused `extern crate`s.
Diffstat (limited to 'src/librustc_errors')
| -rw-r--r-- | src/librustc_errors/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustc_errors/lib.rs | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/librustc_errors/Cargo.toml b/src/librustc_errors/Cargo.toml index c92e4d8f5ab..2ba1f501a63 100644 --- a/src/librustc_errors/Cargo.toml +++ b/src/librustc_errors/Cargo.toml @@ -9,6 +9,4 @@ path = "lib.rs" crate-type = ["dylib"] [dependencies] -log = { path = "../liblog" } -serialize = { path = "../libserialize" } syntax_pos = { path = "../libsyntax_pos" } diff --git a/src/librustc_errors/lib.rs b/src/librustc_errors/lib.rs index 7946f6a0a46..bf5f7cde7eb 100644 --- a/src/librustc_errors/lib.rs +++ b/src/librustc_errors/lib.rs @@ -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; |
