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/libgraphviz | |
| 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/libgraphviz')
| -rw-r--r-- | src/libgraphviz/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index 1b2c7775185..2c6744e7c90 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -284,8 +284,8 @@ //! * [DOT language](http://www.graphviz.org/doc/info/lang.html) #![crate_name = "graphviz"] -#![unstable(feature = "rustc_private", issue = "27812")] -#![feature(staged_api)] +#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))] +#![cfg_attr(stage0, feature(staged_api))] #![crate_type = "rlib"] #![crate_type = "dylib"] #