diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-05-08 14:36:44 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-05-11 16:03:05 -0700 |
| commit | ab54f4b226639558ff46ea1f3e3f504aacef562d (patch) | |
| tree | 1f3c2871920222119755d406e0ec9c5b66e46dc5 /src/librustc_plugin | |
| parent | af0e16c852662d23097ce1821ff04c1676aed20f (diff) | |
| download | rust-ab54f4b226639558ff46ea1f3e3f504aacef562d.tar.gz rust-ab54f4b226639558ff46ea1f3e3f504aacef562d.zip | |
rustc: Remove #![unstable] annotation
These are now no longer necessary with `-Z force-unstable-if-unmarked`
Diffstat (limited to 'src/librustc_plugin')
| -rw-r--r-- | src/librustc_plugin/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/librustc_plugin/lib.rs b/src/librustc_plugin/lib.rs index 8aa680ca12d..16ab593e47a 100644 --- a/src/librustc_plugin/lib.rs +++ b/src/librustc_plugin/lib.rs @@ -51,7 +51,6 @@ //! for more examples. #![crate_name = "rustc_plugin"] -#![unstable(feature = "rustc_private", issue = "27812")] #![crate_type = "dylib"] #![crate_type = "rlib"] #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", @@ -59,9 +58,11 @@ html_root_url = "https://doc.rust-lang.org/nightly/")] #![deny(warnings)] -#![feature(staged_api)] #![feature(rustc_diagnostic_macros)] -#![feature(rustc_private)] + +#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))] +#![cfg_attr(stage0, feature(rustc_private))] +#![cfg_attr(stage0, feature(staged_api))] #[macro_use] extern crate syntax; |
