Use phase(plugin) in bootstrap crates

Do this to avoid warnings on post-stage0 builds.
This commit is contained in:
Keegan McAllister
2014-05-24 21:15:16 -07:00
parent 6d15c6749c
commit ffb2f12ed8
15 changed files with 98 additions and 18 deletions

View File

@@ -32,8 +32,15 @@ This API is completely unstable and subject to change.
extern crate serialize;
extern crate term;
#[cfg(stage0)]
#[phase(syntax, link)]
extern crate log;
#[cfg(not(stage0))]
#[phase(plugin, link)]
extern crate log;
extern crate fmt_macros;
extern crate debug;