41
41
html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
42
42
43
43
#![ feature( asm) ]
44
+ #![ feature( attr_literals) ]
44
45
#![ feature( box_patterns) ]
45
46
#![ feature( box_syntax) ]
46
47
#![ feature( const_fn) ]
49
50
#![ feature( entry_or_default) ]
50
51
#![ feature( from_ref) ]
51
52
#![ feature( fs_read_write) ]
53
+ #![ feature( iterator_step_by) ]
52
54
#![ feature( iterator_find_map) ]
53
55
#![ cfg_attr( windows, feature( libc) ) ]
54
56
#![ cfg_attr( stage0, feature( macro_lifetime_matcher) ) ]
62
64
#![ feature( optin_builtin_traits) ]
63
65
#![ feature( refcell_replace_swap) ]
64
66
#![ feature( rustc_diagnostic_macros) ]
67
+ #![ feature( set_stdio) ]
65
68
#![ feature( slice_patterns) ]
66
69
#![ feature( slice_sort_by_cached_key) ]
67
70
#![ feature( specialization) ]
74
77
#![ feature( in_band_lifetimes) ]
75
78
#![ feature( macro_at_most_once_rep) ]
76
79
#![ feature( inclusive_range_methods) ]
80
+ #![ feature( vec_remove_item) ]
77
81
78
82
#![ recursion_limit="512" ]
79
83
@@ -95,9 +99,12 @@ extern crate rustc_target;
95
99
#[ macro_use] extern crate rustc_data_structures;
96
100
extern crate serialize;
97
101
extern crate rustc_errors as errors;
102
+ extern crate rustc_rayon as rayon;
103
+ extern crate rustc_rayon_core as rayon_core;
98
104
#[ macro_use] extern crate log;
99
105
#[ macro_use] extern crate syntax;
100
106
extern crate syntax_pos;
107
+ #[ macro_use] extern crate scoped_tls;
101
108
extern crate jobserver;
102
109
extern crate proc_macro;
103
110
extern crate chalk_engine;
0 commit comments