Move rustc_borrowck -> rustc_ast_borrowck
This commit is contained in:
parent
be085d7c0f
commit
34ddc70c3f
@ -2946,7 +2946,7 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustc_borrowck"
|
name = "rustc_ast_borrowck"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"graphviz 0.0.0",
|
"graphviz 0.0.0",
|
||||||
@ -3044,7 +3044,7 @@ dependencies = [
|
|||||||
"rustc 0.0.0",
|
"rustc 0.0.0",
|
||||||
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rustc_allocator 0.0.0",
|
"rustc_allocator 0.0.0",
|
||||||
"rustc_borrowck 0.0.0",
|
"rustc_ast_borrowck 0.0.0",
|
||||||
"rustc_codegen_utils 0.0.0",
|
"rustc_codegen_utils 0.0.0",
|
||||||
"rustc_data_structures 0.0.0",
|
"rustc_data_structures 0.0.0",
|
||||||
"rustc_errors 0.0.0",
|
"rustc_errors 0.0.0",
|
||||||
@ -3109,7 +3109,7 @@ dependencies = [
|
|||||||
"rustc 0.0.0",
|
"rustc 0.0.0",
|
||||||
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rustc_allocator 0.0.0",
|
"rustc_allocator 0.0.0",
|
||||||
"rustc_borrowck 0.0.0",
|
"rustc_ast_borrowck 0.0.0",
|
||||||
"rustc_codegen_ssa 0.0.0",
|
"rustc_codegen_ssa 0.0.0",
|
||||||
"rustc_codegen_utils 0.0.0",
|
"rustc_codegen_utils 0.0.0",
|
||||||
"rustc_data_structures 0.0.0",
|
"rustc_data_structures 0.0.0",
|
||||||
|
@ -18,7 +18,7 @@ rayon = { version = "0.2.0", package = "rustc-rayon" }
|
|||||||
rustc = { path = "../librustc" }
|
rustc = { path = "../librustc" }
|
||||||
rustc_allocator = { path = "../librustc_allocator" }
|
rustc_allocator = { path = "../librustc_allocator" }
|
||||||
rustc_target = { path = "../librustc_target" }
|
rustc_target = { path = "../librustc_target" }
|
||||||
rustc_borrowck = { path = "../librustc_borrowck" }
|
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
|
||||||
rustc_data_structures = { path = "../librustc_data_structures" }
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
||||||
errors = { path = "../librustc_errors", package = "rustc_errors" }
|
errors = { path = "../librustc_errors", package = "rustc_errors" }
|
||||||
rustc_incremental = { path = "../librustc_incremental" }
|
rustc_incremental = { path = "../librustc_incremental" }
|
||||||
|
@ -19,7 +19,7 @@ syntax_pos = { path = "../libsyntax_pos" }
|
|||||||
serialize = { path = "../libserialize" }
|
serialize = { path = "../libserialize" }
|
||||||
rustc = { path = "../librustc" }
|
rustc = { path = "../librustc" }
|
||||||
rustc_allocator = { path = "../librustc_allocator" }
|
rustc_allocator = { path = "../librustc_allocator" }
|
||||||
rustc_borrowck = { path = "../librustc_borrowck" }
|
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
|
||||||
rustc_incremental = { path = "../librustc_incremental" }
|
rustc_incremental = { path = "../librustc_incremental" }
|
||||||
rustc_traits = { path = "../librustc_traits" }
|
rustc_traits = { path = "../librustc_traits" }
|
||||||
rustc_data_structures = { path = "../librustc_data_structures" }
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
use rustc::session::config::{self, CrateType, Input, OutputFilenames, OutputType};
|
use rustc::session::config::{self, CrateType, Input, OutputFilenames, OutputType};
|
||||||
use rustc::session::search_paths::PathKind;
|
use rustc::session::search_paths::PathKind;
|
||||||
use rustc_allocator as allocator;
|
use rustc_allocator as allocator;
|
||||||
use rustc_borrowck as borrowck;
|
use rustc_ast_borrowck as borrowck;
|
||||||
use rustc_codegen_ssa::back::link::emit_metadata;
|
use rustc_codegen_ssa::back::link::emit_metadata;
|
||||||
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
||||||
use rustc_codegen_utils::link::filename_for_metadata;
|
use rustc_codegen_utils::link::filename_for_metadata;
|
||||||
|
Loading…
Reference in New Issue
Block a user