diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-08-12 22:19:19 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-08-15 18:09:16 -0700 |
| commit | 59dac3175fd7040362fd147932c5d3feaaddeba1 (patch) | |
| tree | 39c9753d1e9b36dfbca93dc3bf09114ad7dba34f /src | |
| parent | 6734c933b5ee70040346c2e1313e0abb5b978f9a (diff) | |
| download | rust-59dac3175fd7040362fd147932c5d3feaaddeba1.tar.gz rust-59dac3175fd7040362fd147932c5d3feaaddeba1.zip | |
libc,rand: Add issues for all unstable features
Diffstat (limited to 'src')
| -rw-r--r-- | src/liblibc/lib.rs | 5 | ||||
| -rw-r--r-- | src/librand/lib.rs | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 82edce6bdbd..08f0b2aa895 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -12,8 +12,9 @@ #![cfg_attr(stage0, feature(custom_attribute))] #![crate_name = "libc"] #![crate_type = "rlib"] -#![cfg_attr(not(feature = "cargo-build"), unstable(feature = "libc", - reason = "use `libc` from crates.io"))] +#![cfg_attr(not(feature = "cargo-build"), + unstable(feature = "libc", reason = "use `libc` from crates.io", + issue = "27783"))] #![cfg_attr(not(feature = "cargo-build"), feature(staged_api, no_std))] #![cfg_attr(not(feature = "cargo-build"), staged_api)] #![cfg_attr(not(feature = "cargo-build"), no_std)] diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 56104064a72..a72bc389286 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -27,7 +27,8 @@ #![no_std] #![staged_api] #![unstable(feature = "rand", - reason = "use `rand` from crates.io")] + reason = "use `rand` from crates.io", + issue = "27703")] #![feature(core_float)] #![feature(core_slice_ext)] #![feature(no_std)] |
