From 279e214d7fb6e402bbd654ba60ba345f36789170 Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Fri, 17 Jan 2020 14:48:38 +0100 Subject: [PATCH] remove rustc_ast_pretty dep from rustc --- Cargo.lock | 1 - src/librustc/Cargo.toml | 2 -- 2 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b4e49bf82dc1..27edea1d90cfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3091,7 +3091,6 @@ dependencies = [ "rustc-rayon", "rustc-rayon-core", "rustc_apfloat", - "rustc_ast_pretty", "rustc_attr", "rustc_data_structures", "rustc_error_codes", diff --git a/src/librustc/Cargo.toml b/src/librustc/Cargo.toml index a0e04010c69c3..653f4ccd38b34 100644 --- a/src/librustc/Cargo.toml +++ b/src/librustc/Cargo.toml @@ -21,8 +21,6 @@ rustc-rayon = "0.3.0" rustc-rayon-core = "0.3.0" polonius-engine = "0.11.0" rustc_apfloat = { path = "../librustc_apfloat" } -# FIXME(Centril): remove this dependency when stuff is moved to rustc_lint. -rustc_ast_pretty = { path = "../librustc_ast_pretty" } rustc_attr = { path = "../librustc_attr" } rustc_feature = { path = "../librustc_feature" } rustc_hir = { path = "../librustc_hir" }