1
Fork 0

Address comments and fix travis warning

This commit is contained in:
Jonathan Turner 2016-06-21 19:57:03 -04:00
parent 6ae3502134
commit 2829fbc638
5 changed files with 3 additions and 7 deletions

View file

@ -7,7 +7,6 @@ version = "0.0.0"
name = "rustc_errors"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
log = { path = "../liblog" }

View file

@ -24,12 +24,11 @@ pub use self::SelfTy::*;
pub use self::FunctionRetTy::*;
pub use self::Visibility::*;
use syntax;
use syntax::abi::Abi;
use syntax::ast;
use syntax::attr;
use syntax::attr::{AttributeMethods, AttrMetaMethods};
use syntax::codemap::{self, Spanned};
use syntax::codemap::Spanned;
use syntax::parse::token::{self, InternedString, keywords};
use syntax::ptr::P;
use syntax_pos::{self, DUMMY_SP, Pos};

View file

@ -13,7 +13,6 @@
pub use self::StructType::*;
pub use self::TypeBound::*;
use syntax;
use syntax::abi;
use syntax::ast;
use syntax::ast::{Name, NodeId};

View file

@ -7,7 +7,6 @@ version = "0.0.0"
name = "syntax_pos"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
serialize = { path = "../libserialize" }