diff options
| author | Shotaro Yamada <sinkuu@sinkuu.xyz> | 2018-12-05 14:06:32 +0900 |
|---|---|---|
| committer | Shotaro Yamada <sinkuu@sinkuu.xyz> | 2018-12-05 14:06:32 +0900 |
| commit | 6cfbb5b9a15e575de4dacec900b2039031cd1ca2 (patch) | |
| tree | e08026c47ea983fa95b600ee2b645b7ce484547a | |
| parent | b3af09205b9af6026453946feadfd78b61b7a9fc (diff) | |
| download | rust-6cfbb5b9a15e575de4dacec900b2039031cd1ca2.tar.gz rust-6cfbb5b9a15e575de4dacec900b2039031cd1ca2.zip | |
Remove unused dependency (rustc_lint -> rustc_mir)
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | src/librustc_lint/Cargo.toml | 1 | ||||
| -rw-r--r-- | src/librustc_lint/lib.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 69d929e913a..02c63200a28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2352,7 +2352,6 @@ dependencies = [ "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc 0.0.0", "rustc_data_structures 0.0.0", - "rustc_mir 0.0.0", "rustc_target 0.0.0", "syntax 0.0.0", "syntax_pos 0.0.0", 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; |
