Skip to content
This repository was archived by the owner on Aug 12, 2021. It is now read-only.

Commit 9ecbcc0

Browse files
committed
rustc: Remove #![unstable] annotation
These are now no longer necessary with `-Z force-unstable-if-unmarked`
1 parent 9a63478 commit 9ecbcc0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@
4141
//! [ti]: https://en.wikipedia.org/wiki/Terminfo
4242
4343
#![crate_name = "term"]
44-
#![unstable(feature = "rustc_private",
45-
reason = "use the crates.io `term` library instead",
46-
issue = "27812")]
4744
#![crate_type = "rlib"]
4845
#![crate_type = "dylib"]
4946
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -54,13 +51,15 @@
5451
#![deny(missing_docs)]
5552
#![deny(warnings)]
5653

57-
#![feature(box_syntax)]
5854
#![feature(staged_api)]
5955
#![cfg_attr(windows, feature(libc))]
6056
// Handle rustfmt skips
6157
#![feature(custom_attribute)]
6258
#![allow(unused_attributes)]
6359

60+
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
61+
#![cfg_attr(stage0, feature(staged_api))]
62+
6463
use std::io::prelude::*;
6564

6665
pub use terminfo::TerminfoTerminal;

0 commit comments

Comments
 (0)