diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-06 14:57:25 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-06 14:57:25 +1100 |
| commit | 4b51a3eb52c5ae292ba54c2044be695630fccc3e (patch) | |
| tree | e4680d4ef5caa148fbf7cea12709bc4c66a474bd /compiler | |
| parent | e49a1470baee89823a49aa6ec7baa19aa033b88b (diff) | |
| download | rust-4b51a3eb52c5ae292ba54c2044be695630fccc3e.tar.gz rust-4b51a3eb52c5ae292ba54c2044be695630fccc3e.zip | |
Remove unneeded dependency.
Also sort them.
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_smir/Cargo.toml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/rustc_smir/Cargo.toml b/compiler/rustc_smir/Cargo.toml index 4c29f743708..3e0d6baab6a 100644 --- a/compiler/rustc_smir/Cargo.toml +++ b/compiler/rustc_smir/Cargo.toml @@ -4,14 +4,13 @@ version = "0.0.0" edition = "2021" [dependencies] +rustc_driver = { path = "../rustc_driver" } rustc_hir = { path = "../rustc_hir" } +rustc_interface = { path = "../rustc_interface" } rustc_middle = { path = "../rustc_middle" } rustc_span = { path = "../rustc_span" } rustc_target = { path = "../rustc_target" } -rustc_driver = { path = "../rustc_driver" } -rustc_interface = { path = "../rustc_interface" } -rustc_session = {path = "../rustc_session" } -tracing = "0.1" stable_mir = {path = "../stable_mir" } +tracing = "0.1" [features] |
