Skip to content

Commit 34ddc70

Browse files
committed
Move rustc_borrowck -> rustc_ast_borrowck
1 parent be085d7 commit 34ddc70

File tree

16 files changed

+6
-6
lines changed

16 files changed

+6
-6
lines changed

Cargo.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -2946,7 +2946,7 @@ dependencies = [
29462946
]
29472947

29482948
[[package]]
2949-
name = "rustc_borrowck"
2949+
name = "rustc_ast_borrowck"
29502950
version = "0.0.0"
29512951
dependencies = [
29522952
"graphviz 0.0.0",
@@ -3044,7 +3044,7 @@ dependencies = [
30443044
"rustc 0.0.0",
30453045
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
30463046
"rustc_allocator 0.0.0",
3047-
"rustc_borrowck 0.0.0",
3047+
"rustc_ast_borrowck 0.0.0",
30483048
"rustc_codegen_utils 0.0.0",
30493049
"rustc_data_structures 0.0.0",
30503050
"rustc_errors 0.0.0",
@@ -3109,7 +3109,7 @@ dependencies = [
31093109
"rustc 0.0.0",
31103110
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
31113111
"rustc_allocator 0.0.0",
3112-
"rustc_borrowck 0.0.0",
3112+
"rustc_ast_borrowck 0.0.0",
31133113
"rustc_codegen_ssa 0.0.0",
31143114
"rustc_codegen_utils 0.0.0",
31153115
"rustc_data_structures 0.0.0",
File renamed without changes.

src/librustc_driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rayon = { version = "0.2.0", package = "rustc-rayon" }
1818
rustc = { path = "../librustc" }
1919
rustc_allocator = { path = "../librustc_allocator" }
2020
rustc_target = { path = "../librustc_target" }
21-
rustc_borrowck = { path = "../librustc_borrowck" }
21+
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
2222
rustc_data_structures = { path = "../librustc_data_structures" }
2323
errors = { path = "../librustc_errors", package = "rustc_errors" }
2424
rustc_incremental = { path = "../librustc_incremental" }

src/librustc_interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ syntax_pos = { path = "../libsyntax_pos" }
1919
serialize = { path = "../libserialize" }
2020
rustc = { path = "../librustc" }
2121
rustc_allocator = { path = "../librustc_allocator" }
22-
rustc_borrowck = { path = "../librustc_borrowck" }
22+
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
2323
rustc_incremental = { path = "../librustc_incremental" }
2424
rustc_traits = { path = "../librustc_traits" }
2525
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc_interface/passes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use rustc::session::{CompileResult, CrateDisambiguator, Session};
1919
use rustc::session::config::{self, CrateType, Input, OutputFilenames, OutputType};
2020
use rustc::session::search_paths::PathKind;
2121
use rustc_allocator as allocator;
22-
use rustc_borrowck as borrowck;
22+
use rustc_ast_borrowck as borrowck;
2323
use rustc_codegen_ssa::back::link::emit_metadata;
2424
use rustc_codegen_utils::codegen_backend::CodegenBackend;
2525
use rustc_codegen_utils::link::filename_for_metadata;

0 commit comments

Comments
 (0)