1
Fork 0

Remove rustc_bitflags; use the bitflags crate

This commit is contained in:
Tamir Duberstein 2017-09-08 15:08:01 -04:00
parent e788fa7b6c
commit 231d9e7e5d
No known key found for this signature in database
GPG key ID: 1C1E98CC8E17BB89
23 changed files with 190 additions and 646 deletions

View file

@ -24,9 +24,13 @@
#![feature(rustc_diagnostic_macros)]
#![feature(i128_type)]
// See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
#[allow(unused_extern_crates)]
extern crate rustc_cratesio_shim;
#[macro_use] extern crate bitflags;
extern crate serialize;
#[macro_use] extern crate log;
#[macro_use] extern crate bitflags;
extern crate std_unicode;
pub extern crate rustc_errors as errors;
extern crate syntax_pos;