Skip to content

Commit 37bf0cb

Browse files
authored
Rollup merge of #56528 - sinkuu:unused_dep, r=Mark-Simulacrum
Remove unused dependency (rustc_lint -> rustc_mir)
2 parents 1095a26 + 6cfbb5b commit 37bf0cb

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

Cargo.lock

-1
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,6 @@ dependencies = [
23522352
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
23532353
"rustc 0.0.0",
23542354
"rustc_data_structures 0.0.0",
2355-
"rustc_mir 0.0.0",
23562355
"rustc_target 0.0.0",
23572356
"syntax 0.0.0",
23582357
"syntax_pos 0.0.0",

src/librustc_lint/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ test = false
1212
[dependencies]
1313
log = "0.4"
1414
rustc = { path = "../librustc" }
15-
rustc_mir = { path = "../librustc_mir"}
1615
rustc_target = { path = "../librustc_target" }
1716
syntax = { path = "../libsyntax" }
1817
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_lint/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ extern crate syntax;
3636
extern crate rustc;
3737
#[macro_use]
3838
extern crate log;
39-
extern crate rustc_mir;
4039
extern crate rustc_target;
4140
extern crate syntax_pos;
4241
extern crate rustc_data_structures;

0 commit comments

Comments
 (0)