Add #[crate_name] attributes as necessary

This commit is contained in:
Alex Crichton 2014-07-01 07:12:04 -07:00
parent c956b70d7b
commit e44c2b9bbc
34 changed files with 102 additions and 40 deletions

View file

@ -18,7 +18,8 @@ This API is completely unstable and subject to change.
*/
#![crate_id = "rustc#0.11.0"]
#![crate_id = "rustc#0.11.0"] // NOTE: remove after stage0
#![crate_name = "rustc"]
#![experimental]
#![comment = "The Rust compiler"]
#![license = "MIT/ASL2"]
@ -31,6 +32,7 @@ This API is completely unstable and subject to change.
#![allow(deprecated)]
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote)]
#![feature(default_type_params, phase, unsafe_destructor)]
#![allow(unused_attribute)] // NOTE: remove after stage0
extern crate arena;
extern crate debug;