rustc_mir: Mark the crate as unstable

Wouldn't want to be able to link to this on stable Rust!
This commit is contained in:
Alex Crichton 2016-01-22 10:17:07 -08:00
parent 2273b52023
commit 4b3c35509b

View File

@ -18,8 +18,10 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
#![crate_type = "rlib"]
#![crate_type = "dylib"]
#![cfg_attr(not(stage0), deny(warnings))]
#![unstable(feature = "rustc_private", issue = "27812")]
#![feature(rustc_private)]
#![feature(staged_api)]
#[macro_use] extern crate log;
extern crate graphviz as dot;