about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-12-06 07:49:00 +0100
committerGitHub <noreply@github.com>2018-12-06 07:49:00 +0100
commit9e7ff567501f48b62a4ee6b441ae4b3d3afcb38e (patch)
treecac8e5f1e78d5b482374f6c70f1f87c7f3273e73 /src
parentbd8dd11d4d907b67ce20952c3a9ebe769e4ae547 (diff)
parent6cfbb5b9a15e575de4dacec900b2039031cd1ca2 (diff)
downloadrust-9e7ff567501f48b62a4ee6b441ae4b3d3afcb38e.tar.gz
rust-9e7ff567501f48b62a4ee6b441ae4b3d3afcb38e.zip
Rollup merge of #56528 - sinkuu:unused_dep, r=Mark-Simulacrum
Remove unused dependency (rustc_lint -> rustc_mir)
Diffstat (limited to 'src')
-rw-r--r--src/librustc_lint/Cargo.toml1
-rw-r--r--src/librustc_lint/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/librustc_lint/Cargo.toml b/src/librustc_lint/Cargo.toml
index fe197e3e2e2..7fb7a06ea1a 100644
--- a/src/librustc_lint/Cargo.toml
+++ b/src/librustc_lint/Cargo.toml
@@ -12,7 +12,6 @@ test = false
 [dependencies]
 log = "0.4"
 rustc = { path = "../librustc" }
-rustc_mir = { path = "../librustc_mir"}
 rustc_target = { path = "../librustc_target" }
 syntax = { path = "../libsyntax" }
 syntax_pos = { path = "../libsyntax_pos" }
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs
index 71efc5654ef..4d709d574c4 100644
--- a/src/librustc_lint/lib.rs
+++ b/src/librustc_lint/lib.rs
@@ -36,7 +36,6 @@ extern crate syntax;
 extern crate rustc;
 #[macro_use]
 extern crate log;
-extern crate rustc_mir;
 extern crate rustc_target;
 extern crate syntax_pos;
 extern crate rustc_data_structures;