Skip to content

Commit 83dcdd9

Browse files
committed
Remove librustc_ast_borrowck from driver & interface.
1 parent a094926 commit 83dcdd9

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

Cargo.lock

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3337,17 +3337,6 @@ dependencies = [
33373337
"core",
33383338
]
33393339

3340-
[[package]]
3341-
name = "rustc_ast_borrowck"
3342-
version = "0.0.0"
3343-
dependencies = [
3344-
"graphviz",
3345-
"log",
3346-
"rustc",
3347-
"rustc_data_structures",
3348-
"syntax_pos",
3349-
]
3350-
33513340
[[package]]
33523341
name = "rustc_codegen_llvm"
33533342
version = "0.0.0"
@@ -3425,7 +3414,6 @@ dependencies = [
34253414
"lazy_static 1.3.0",
34263415
"log",
34273416
"rustc",
3428-
"rustc_ast_borrowck",
34293417
"rustc_codegen_utils",
34303418
"rustc_data_structures",
34313419
"rustc_errors",
@@ -3483,7 +3471,6 @@ dependencies = [
34833471
"once_cell",
34843472
"rustc",
34853473
"rustc-rayon",
3486-
"rustc_ast_borrowck",
34873474
"rustc_codegen_ssa",
34883475
"rustc_codegen_utils",
34893476
"rustc_data_structures",

src/librustc_driver/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ log = "0.4"
1616
env_logger = { version = "0.6", default-features = false }
1717
rustc = { path = "../librustc" }
1818
rustc_target = { path = "../librustc_target" }
19-
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
2019
rustc_data_structures = { path = "../librustc_data_structures" }
2120
errors = { path = "../librustc_errors", package = "rustc_errors" }
2221
rustc_metadata = { path = "../librustc_metadata" }

src/librustc_interface/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ syntax_ext = { path = "../libsyntax_ext" }
1818
syntax_pos = { path = "../libsyntax_pos" }
1919
rustc_serialize = { path = "../libserialize", package = "serialize" }
2020
rustc = { path = "../librustc" }
21-
rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
2221
rustc_incremental = { path = "../librustc_incremental" }
2322
rustc_traits = { path = "../librustc_traits" }
2423
rustc_data_structures = { path = "../librustc_data_structures" }

0 commit comments

Comments
 (0)