From 40cec7854b8422b47a7d917556694e3abbbb2d2e Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Sat, 21 Mar 2020 04:48:12 +0100 Subject: [PATCH] lowering: remove librustc dependency --- Cargo.lock | 1 - src/librustc_ast_lowering/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f626aa59ae9..c65c3a45ec2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3479,7 +3479,6 @@ version = "0.0.0" dependencies = [ "arena", "log", - "rustc", "rustc_ast", "rustc_ast_pretty", "rustc_data_structures", diff --git a/src/librustc_ast_lowering/Cargo.toml b/src/librustc_ast_lowering/Cargo.toml index 75547ccb814..b477b75db5a 100644 --- a/src/librustc_ast_lowering/Cargo.toml +++ b/src/librustc_ast_lowering/Cargo.toml @@ -12,7 +12,6 @@ doctest = false [dependencies] arena = { path = "../libarena" } log = { version = "0.4", features = ["release_max_level_info", "std"] } -rustc = { path = "../librustc" } rustc_ast_pretty = { path = "../librustc_ast_pretty" } rustc_hir = { path = "../librustc_hir" } rustc_target = { path = "../librustc_target" }