소스 검색

Remove unused extern crates.

Bruce Mitchener 7 년 전
부모
커밋
f2893a0af6
3개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 1
      examples/load_elf.rs
  2. 0 1
      examples/to_json.rs
  3. 0 1
      src/lib.rs

+ 0 - 1
examples/load_elf.rs

@@ -5,7 +5,6 @@
 // copied, modified, or distributed except according to those terms.
 
 
-extern crate byteorder;
 extern crate elf;
 use std::path::PathBuf;
 

+ 0 - 1
examples/to_json.rs

@@ -8,7 +8,6 @@
 #[macro_use]
 extern crate json;
 
-extern crate byteorder;
 extern crate elf;
 use std::path::PathBuf;
 

+ 0 - 1
src/lib.rs

@@ -20,7 +20,6 @@
 use std::u32;
 use std::collections::HashMap;
 
-extern crate libc;
 extern crate combine;
 extern crate time;