Move rustc_middle::limits to rustc_interface.

It's always good to make `rustc_middle` smaller. `rustc_interface` is
the best destination, because it's the only crate that calls
`get_recursive_limit`.
This commit is contained in:
Nicholas Nethercote
2025-02-07 16:19:05 +11:00
parent 13280eed6a
commit 223c95fd59
9 changed files with 23 additions and 26 deletions

View File

@@ -10,6 +10,7 @@
mod callbacks;
pub mod errors;
pub mod interface;
mod limits;
pub mod passes;
mod proc_macro_decls;
mod queries;