diff options
| author | Matthew Jasper <mjjasper1@gmail.com> | 2019-06-29 17:37:32 +0100 |
|---|---|---|
| committer | Matthew Jasper <mjjasper1@gmail.com> | 2019-07-11 18:54:02 +0100 |
| commit | 34ddc70c3f4a013f22273d9497631186b26f07b2 (patch) | |
| tree | bbdb4b44981406f7eceb1bdac146c23eb7fe54c8 | |
| parent | be085d7c0f97c44b0e98f9f46466cd6f7815e07f (diff) | |
| download | rust-34ddc70c3f4a013f22273d9497631186b26f07b2.tar.gz rust-34ddc70c3f4a013f22273d9497631186b26f07b2.zip | |
Move rustc_borrowck -> rustc_ast_borrowck
| -rw-r--r-- | Cargo.lock | 6 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/Cargo.toml (renamed from src/librustc_borrowck/Cargo.toml) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/README.md (renamed from src/librustc_borrowck/borrowck/README.md) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/check_loans.rs (renamed from src/librustc_borrowck/borrowck/check_loans.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/gather_loans/gather_moves.rs (renamed from src/librustc_borrowck/borrowck/gather_loans/gather_moves.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/gather_loans/lifetime.rs (renamed from src/librustc_borrowck/borrowck/gather_loans/lifetime.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/gather_loans/mod.rs (renamed from src/librustc_borrowck/borrowck/gather_loans/mod.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/gather_loans/restrictions.rs (renamed from src/librustc_borrowck/borrowck/gather_loans/restrictions.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/mod.rs (renamed from src/librustc_borrowck/borrowck/mod.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/borrowck/move_data.rs (renamed from src/librustc_borrowck/borrowck/move_data.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/dataflow.rs (renamed from src/librustc_borrowck/dataflow.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/graphviz.rs (renamed from src/librustc_borrowck/graphviz.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_ast_borrowck/lib.rs (renamed from src/librustc_borrowck/lib.rs) | 0 | ||||
| -rw-r--r-- | src/librustc_driver/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustc_interface/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustc_interface/passes.rs | 2 |
16 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 986eab753f1..cee2b385648 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2946,7 +2946,7 @@ dependencies = [ ] [[package]] -name = "rustc_borrowck" +name = "rustc_ast_borrowck" version = "0.0.0" dependencies = [ "graphviz 0.0.0", @@ -3044,7 +3044,7 @@ dependencies = [ "rustc 0.0.0", "rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_allocator 0.0.0", - "rustc_borrowck 0.0.0", + "rustc_ast_borrowck 0.0.0", "rustc_codegen_utils 0.0.0", "rustc_data_structures 0.0.0", "rustc_errors 0.0.0", @@ -3109,7 +3109,7 @@ dependencies = [ "rustc 0.0.0", "rustc-rayon 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_allocator 0.0.0", - "rustc_borrowck 0.0.0", + "rustc_ast_borrowck 0.0.0", "rustc_codegen_ssa 0.0.0", "rustc_codegen_utils 0.0.0", "rustc_data_structures 0.0.0", diff --git a/src/librustc_borrowck/Cargo.toml b/src/librustc_ast_borrowck/Cargo.toml index 024b2640e1e..024b2640e1e 100644 --- a/src/librustc_borrowck/Cargo.toml +++ b/src/librustc_ast_borrowck/Cargo.toml diff --git a/src/librustc_borrowck/borrowck/README.md b/src/librustc_ast_borrowck/borrowck/README.md index 6c47e8784e0..6c47e8784e0 100644 --- a/src/librustc_borrowck/borrowck/README.md +++ b/src/librustc_ast_borrowck/borrowck/README.md diff --git a/src/librustc_borrowck/borrowck/check_loans.rs b/src/librustc_ast_borrowck/borrowck/check_loans.rs index 3d824ee6ce1..3d824ee6ce1 100644 --- a/src/librustc_borrowck/borrowck/check_loans.rs +++ b/src/librustc_ast_borrowck/borrowck/check_loans.rs diff --git a/src/librustc_borrowck/borrowck/gather_loans/gather_moves.rs b/src/librustc_ast_borrowck/borrowck/gather_loans/gather_moves.rs index 617161109b5..617161109b5 100644 --- a/src/librustc_borrowck/borrowck/gather_loans/gather_moves.rs +++ b/src/librustc_ast_borrowck/borrowck/gather_loans/gather_moves.rs diff --git a/src/librustc_borrowck/borrowck/gather_loans/lifetime.rs b/src/librustc_ast_borrowck/borrowck/gather_loans/lifetime.rs index ff7dd66793d..ff7dd66793d 100644 --- a/src/librustc_borrowck/borrowck/gather_loans/lifetime.rs +++ b/src/librustc_ast_borrowck/borrowck/gather_loans/lifetime.rs diff --git a/src/librustc_borrowck/borrowck/gather_loans/mod.rs b/src/librustc_ast_borrowck/borrowck/gather_loans/mod.rs index 16fef705ec9..16fef705ec9 100644 --- a/src/librustc_borrowck/borrowck/gather_loans/mod.rs +++ b/src/librustc_ast_borrowck/borrowck/gather_loans/mod.rs diff --git a/src/librustc_borrowck/borrowck/gather_loans/restrictions.rs b/src/librustc_ast_borrowck/borrowck/gather_loans/restrictions.rs index 545c27b17bd..545c27b17bd 100644 --- a/src/librustc_borrowck/borrowck/gather_loans/restrictions.rs +++ b/src/librustc_ast_borrowck/borrowck/gather_loans/restrictions.rs diff --git a/src/librustc_borrowck/borrowck/mod.rs b/src/librustc_ast_borrowck/borrowck/mod.rs index f8ad8baa597..f8ad8baa597 100644 --- a/src/librustc_borrowck/borrowck/mod.rs +++ b/src/librustc_ast_borrowck/borrowck/mod.rs diff --git a/src/librustc_borrowck/borrowck/move_data.rs b/src/librustc_ast_borrowck/borrowck/move_data.rs index 887a0e2f20e..887a0e2f20e 100644 --- a/src/librustc_borrowck/borrowck/move_data.rs +++ b/src/librustc_ast_borrowck/borrowck/move_data.rs diff --git a/src/librustc_borrowck/dataflow.rs b/src/librustc_ast_borrowck/dataflow.rs index 94849728a93..94849728a93 100644 --- a/src/librustc_borrowck/dataflow.rs +++ b/src/librustc_ast_borrowck/dataflow.rs diff --git a/src/librustc_borrowck/graphviz.rs b/src/librustc_ast_borrowck/graphviz.rs index 7a8a23ca76a..7a8a23ca76a 100644 --- a/src/librustc_borrowck/graphviz.rs +++ b/src/librustc_ast_borrowck/graphviz.rs diff --git a/src/librustc_borrowck/lib.rs b/src/librustc_ast_borrowck/lib.rs index b857c625ec2..b857c625ec2 100644 --- a/src/librustc_borrowck/lib.rs +++ b/src/librustc_ast_borrowck/lib.rs diff --git a/src/librustc_driver/Cargo.toml b/src/librustc_driver/Cargo.toml index 9a8473e1409..d4c30dc6c45 100644 --- a/src/librustc_driver/Cargo.toml +++ b/src/librustc_driver/Cargo.toml @@ -18,7 +18,7 @@ rayon = { version = "0.2.0", package = "rustc-rayon" } rustc = { path = "../librustc" } rustc_allocator = { path = "../librustc_allocator" } rustc_target = { path = "../librustc_target" } -rustc_borrowck = { path = "../librustc_borrowck" } +rustc_ast_borrowck = { path = "../librustc_ast_borrowck" } rustc_data_structures = { path = "../librustc_data_structures" } errors = { path = "../librustc_errors", package = "rustc_errors" } rustc_incremental = { path = "../librustc_incremental" } diff --git a/src/librustc_interface/Cargo.toml b/src/librustc_interface/Cargo.toml index 2712355d537..a0efec5ee7a 100644 --- a/src/librustc_interface/Cargo.toml +++ b/src/librustc_interface/Cargo.toml @@ -19,7 +19,7 @@ syntax_pos = { path = "../libsyntax_pos" } serialize = { path = "../libserialize" } rustc = { path = "../librustc" } rustc_allocator = { path = "../librustc_allocator" } -rustc_borrowck = { path = "../librustc_borrowck" } +rustc_ast_borrowck = { path = "../librustc_ast_borrowck" } rustc_incremental = { path = "../librustc_incremental" } rustc_traits = { path = "../librustc_traits" } rustc_data_structures = { path = "../librustc_data_structures" } diff --git a/src/librustc_interface/passes.rs b/src/librustc_interface/passes.rs index 9a5eb2b93d5..bb58d134989 100644 --- a/src/librustc_interface/passes.rs +++ b/src/librustc_interface/passes.rs @@ -19,7 +19,7 @@ use rustc::session::{CompileResult, CrateDisambiguator, Session}; use rustc::session::config::{self, CrateType, Input, OutputFilenames, OutputType}; use rustc::session::search_paths::PathKind; 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_utils::codegen_backend::CodegenBackend; use rustc_codegen_utils::link::filename_for_metadata; |
