Skip to content

Commit dd50854

Browse files
committed
Use rayon git branch
1 parent 3402eba commit dd50854

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/librustc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobserver = "0.1"
1717
lazy_static = "1.0.0"
1818
log = { version = "0.4", features = ["release_max_level_info", "std"] }
1919
proc_macro = { path = "../libproc_macro" }
20-
rustc-rayon = "0.1.0"
21-
rustc-rayon-core = "0.1.0"
20+
rustc-rayon-core = { git = "https://github.com/Zoxc/rayon.git", branch = "rustc" }
21+
rustc-rayon = { git = "https://github.com/Zoxc/rayon.git", branch = "rustc" }
2222
rustc_apfloat = { path = "../librustc_apfloat" }
2323
rustc_target = { path = "../librustc_target" }
2424
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc_data_structures/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ serialize = { path = "../libserialize" }
1616
cfg-if = "0.1.2"
1717
stable_deref_trait = "1.0.0"
1818
parking_lot_core = "0.2.8"
19-
rustc-rayon = "0.1.0"
20-
rustc-rayon-core = "0.1.0"
19+
rustc-rayon-core = { git = "https://github.com/Zoxc/rayon.git", branch = "rustc" }
20+
rustc-rayon = { git = "https://github.com/Zoxc/rayon.git", branch = "rustc" }
2121

2222
[dependencies.parking_lot]
2323
version = "0.5"

src/librustc_driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ arena = { path = "../libarena" }
1313
graphviz = { path = "../libgraphviz" }
1414
log = "0.4"
1515
env_logger = { version = "0.5", default-features = false }
16-
rustc-rayon = "0.1.0"
16+
rustc-rayon = { git = "https://github.com/Zoxc/rayon.git", branch = "rustc" }
1717
scoped-tls = { version = "0.1.1", features = ["nightly"] }
1818
rustc = { path = "../librustc" }
1919
rustc_allocator = { path = "../librustc_allocator" }

0 commit comments

Comments
 (0)