Skip to content

Commit 59dac31

Browse files
committed
libc,rand: Add issues for all unstable features
1 parent 6734c93 commit 59dac31

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/liblibc/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
#![cfg_attr(stage0, feature(custom_attribute))]
1313
#![crate_name = "libc"]
1414
#![crate_type = "rlib"]
15-
#![cfg_attr(not(feature = "cargo-build"), unstable(feature = "libc",
16-
reason = "use `libc` from crates.io"))]
15+
#![cfg_attr(not(feature = "cargo-build"),
16+
unstable(feature = "libc", reason = "use `libc` from crates.io",
17+
issue = "27783"))]
1718
#![cfg_attr(not(feature = "cargo-build"), feature(staged_api, no_std))]
1819
#![cfg_attr(not(feature = "cargo-build"), staged_api)]
1920
#![cfg_attr(not(feature = "cargo-build"), no_std)]

src/librand/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
#![no_std]
2828
#![staged_api]
2929
#![unstable(feature = "rand",
30-
reason = "use `rand` from crates.io")]
30+
reason = "use `rand` from crates.io",
31+
issue = "27703")]
3132
#![feature(core_float)]
3233
#![feature(core_slice_ext)]
3334
#![feature(no_std)]

0 commit comments

Comments
 (0)