Skip to content

Commit 88362e2

Browse files
huonwalexcrichton
authored andcommitted
---
yaml --- r: 204921 b: refs/heads/try c: 2f0dce3 h: refs/heads/master i: 204919: 0da92db v: v3
1 parent d6f7216 commit 88362e2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 222cd73b8a422d2c4124375f6aaffd2663bb9718
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 857ef6e272e5634cb9f3e6ee50eb6bc2a2e71651
5-
refs/heads/try: fd815b7a57b0214362d53b5e4e0dc282c5c26dfd
5+
refs/heads/try: 2f0dce3e783f65de5bdb525bfdc757d1bf0533e2
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/liblibc/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
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"))]
15+
#![cfg_attr(not(feature = "cargo-build"), unstable(feature = "libc",
16+
reason = "use `libc` from crates.io"))]
1617
#![cfg_attr(not(feature = "cargo-build"), feature(staged_api, core, no_std))]
1718
#![cfg_attr(not(feature = "cargo-build"), staged_api)]
1819
#![cfg_attr(not(feature = "cargo-build"), no_std)]

branches/try/src/librand/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
html_playground_url = "http://play.rust-lang.org/")]
2727
#![no_std]
2828
#![staged_api]
29-
#![unstable(feature = "rand")]
29+
#![unstable(feature = "rand",
30+
reason = "use `rand` from crates.io")]
3031
#![feature(core)]
3132
#![feature(no_std)]
3233
#![feature(staged_api)]

0 commit comments

Comments
 (0)