From 7d6548a14a240d57561df9faaf75c31422137caa Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Sun, 5 Jan 2020 12:02:45 +0100 Subject: [PATCH] rustc_passes: remove unused rustc_parse dep --- Cargo.lock | 1 - src/librustc_passes/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 772470d90c57..e96bf84e95b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3807,7 +3807,6 @@ dependencies = [ "rustc_feature", "rustc_hir", "rustc_index", - "rustc_parse", "rustc_session", "rustc_span", "rustc_target", diff --git a/src/librustc_passes/Cargo.toml b/src/librustc_passes/Cargo.toml index 897581b32b5a..639d8639c4bb 100644 --- a/src/librustc_passes/Cargo.toml +++ b/src/librustc_passes/Cargo.toml @@ -16,7 +16,6 @@ rustc_errors = { path = "../librustc_errors" } rustc_feature = { path = "../librustc_feature" } rustc_hir = { path = "../librustc_hir" } rustc_index = { path = "../librustc_index" } -rustc_parse = { path = "../librustc_parse" } rustc_session = { path = "../librustc_session" } rustc_target = { path = "../librustc_target" } syntax = { path = "../libsyntax" }