Skip to content

File tree

71 files changed

+63
-540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+63
-540
lines changed
 

‎src/bootstrap/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use Build;
2424
use config::Config;
2525

2626
// The version number
27-
pub const CFG_RELEASE_NUM: &str = "1.30.0";
27+
pub const CFG_RELEASE_NUM: &str = "1.31.0";
2828

2929
pub struct GitInfo {
3030
inner: Option<Info>,

‎src/liballoc/lib.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676

7777
#![cfg_attr(not(test), feature(fn_traits))]
7878
#![cfg_attr(not(test), feature(generator_trait))]
79-
#![cfg_attr(not(stage0), feature(nll))]
8079
#![cfg_attr(test, feature(test))]
8180

8281
#![feature(allocator_api)]
@@ -87,8 +86,7 @@
8786
#![feature(box_syntax)]
8887
#![feature(cfg_target_has_atomic)]
8988
#![feature(coerce_unsized)]
90-
#![cfg_attr(stage0, feature(const_fn))]
91-
#![cfg_attr(not(stage0), feature(min_const_fn))]
89+
#![feature(min_const_fn)]
9290
#![feature(core_intrinsics)]
9391
#![feature(custom_attribute)]
9492
#![feature(dropck_eyepatch)]
@@ -99,6 +97,7 @@
9997
#![feature(lang_items)]
10098
#![feature(libc)]
10199
#![feature(needs_allocator)]
100+
#![feature(nll)]
102101
#![feature(optin_builtin_traits)]
103102
#![feature(pattern)]
104103
#![feature(pin)]

0 commit comments

Comments
 (0)
Please sign in to comment.