Skip to content

Commit 9d9a40a

Browse files
committed
misc
1 parent 8bd5144 commit 9d9a40a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/librustc/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ lazy_static = "1.0.0"
1818
log = { version = "0.4", features = ["release_max_level_info", "std"] }
1919
polonius-engine = "0.5.0"
2020
proc_macro = { path = "../libproc_macro" }
21+
rustc-rayon = { git = "https://github.com/Zoxc/rayon.git", branch = "fiber" }
22+
rustc-rayon-core = { git = "https://github.com/Zoxc/rayon.git", branch = "fiber", features=["tlv"] }
23+
scoped-tls = { version = "0.1.1", features = ["nightly"] }
2124
rustc_apfloat = { path = "../librustc_apfloat" }
2225
rustc_target = { path = "../librustc_target" }
2326
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
html_root_url = "https://doc.rust-lang.org/nightly/")]
4242

4343
#![feature(asm)]
44+
#![feature(attr_literals)]
4445
#![feature(box_patterns)]
4546
#![feature(box_syntax)]
4647
#![feature(const_fn)]
@@ -49,6 +50,7 @@
4950
#![feature(entry_or_default)]
5051
#![feature(from_ref)]
5152
#![feature(fs_read_write)]
53+
#![feature(iterator_step_by)]
5254
#![feature(iterator_find_map)]
5355
#![cfg_attr(windows, feature(libc))]
5456
#![cfg_attr(stage0, feature(macro_lifetime_matcher))]
@@ -62,6 +64,7 @@
6264
#![feature(optin_builtin_traits)]
6365
#![feature(refcell_replace_swap)]
6466
#![feature(rustc_diagnostic_macros)]
67+
#![feature(set_stdio)]
6568
#![feature(slice_patterns)]
6669
#![feature(slice_sort_by_cached_key)]
6770
#![feature(specialization)]
@@ -74,6 +77,7 @@
7477
#![feature(in_band_lifetimes)]
7578
#![feature(macro_at_most_once_rep)]
7679
#![feature(inclusive_range_methods)]
80+
#![feature(vec_remove_item)]
7781

7882
#![recursion_limit="512"]
7983

@@ -95,9 +99,12 @@ extern crate rustc_target;
9599
#[macro_use] extern crate rustc_data_structures;
96100
extern crate serialize;
97101
extern crate rustc_errors as errors;
102+
extern crate rustc_rayon as rayon;
103+
extern crate rustc_rayon_core as rayon_core;
98104
#[macro_use] extern crate log;
99105
#[macro_use] extern crate syntax;
100106
extern crate syntax_pos;
107+
#[macro_use] extern crate scoped_tls;
101108
extern crate jobserver;
102109
extern crate proc_macro;
103110
extern crate chalk_engine;

0 commit comments

Comments
 (0)