Skip to content

Commit 4b51a3e

Browse files
committed
Remove unneeded dependency.
Also sort them.
1 parent e49a147 commit 4b51a3e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Cargo.lock

-1
Original file line numberDiff line numberDiff line change
@@ -4416,7 +4416,6 @@ dependencies = [
44164416
"rustc_hir",
44174417
"rustc_interface",
44184418
"rustc_middle",
4419-
"rustc_session",
44204419
"rustc_span",
44214420
"rustc_target",
44224421
"stable_mir",

compiler/rustc_smir/Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ version = "0.0.0"
44
edition = "2021"
55

66
[dependencies]
7+
rustc_driver = { path = "../rustc_driver" }
78
rustc_hir = { path = "../rustc_hir" }
9+
rustc_interface = { path = "../rustc_interface" }
810
rustc_middle = { path = "../rustc_middle" }
911
rustc_span = { path = "../rustc_span" }
1012
rustc_target = { path = "../rustc_target" }
11-
rustc_driver = { path = "../rustc_driver" }
12-
rustc_interface = { path = "../rustc_interface" }
13-
rustc_session = {path = "../rustc_session" }
14-
tracing = "0.1"
1513
stable_mir = {path = "../stable_mir" }
14+
tracing = "0.1"
1615

1716
[features]

0 commit comments

Comments
 (0)