File tree Expand file tree Collapse file tree 8 files changed +5
-8
lines changed Expand file tree Collapse file tree 8 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
1
#![ feature( let_chains) ]
2
- #![ feature( once_cell) ]
3
2
#![ feature( rustc_private) ]
4
3
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
5
4
// warn on lints, that are included in `rust-lang/rust`s bootstrap
Original file line number Diff line number Diff line change 7
7
#![ feature( let_chains) ]
8
8
#![ feature( lint_reasons) ]
9
9
#![ feature( never_type) ]
10
- #![ feature( once_cell) ]
11
10
#![ feature( rustc_private) ]
12
11
#![ feature( stmt_expr_attributes) ]
13
12
#![ recursion_limit = "512" ]
Original file line number Diff line number Diff line change 3
3
#![ feature( let_chains) ]
4
4
#![ feature( lint_reasons) ]
5
5
#![ feature( never_type) ]
6
- #![ feature( once_cell) ]
7
6
#![ feature( rustc_private) ]
8
7
#![ recursion_limit = "512" ]
9
8
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
Original file line number Diff line number Diff line change 1
1
#![ feature( rustc_private) ]
2
2
#![ feature( let_chains) ]
3
- #![ feature( once_cell ) ]
3
+ #![ feature( lazy_cell ) ]
4
4
#![ feature( lint_reasons) ]
5
5
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
6
6
// warn on lints, that are included in `rust-lang/rust`s bootstrap
Original file line number Diff line number Diff line change 1
1
#![ feature( test) ] // compiletest_rs requires this attribute
2
- #![ feature( once_cell ) ]
2
+ #![ feature( lazy_cell ) ]
3
3
#![ feature( is_sorted) ]
4
4
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
5
5
#![ warn( rust_2018_idioms, unused_lifetimes) ]
Original file line number Diff line number Diff line change 3
3
//!
4
4
//! See [Eating your own dog food](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) for context
5
5
6
- #![ feature( once_cell ) ]
6
+ #![ feature( lazy_cell ) ]
7
7
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
8
8
#![ warn( rust_2018_idioms, unused_lifetimes) ]
9
9
Original file line number Diff line number Diff line change 1
- #![ feature( once_cell ) ]
1
+ #![ feature( lazy_cell ) ]
2
2
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
3
3
#![ warn( rust_2018_idioms, unused_lifetimes) ]
4
4
Original file line number Diff line number Diff line change 1
- #![ feature( once_cell ) ]
1
+ #![ feature( lazy_cell ) ]
2
2
3
3
use std:: path:: PathBuf ;
4
4
use std:: process:: Command ;
You can’t perform that action at this time.
0 commit comments