rustc/compiler/rustc_driver_impl
2025-02-17 11:14:05 +01:00
..
src New upstream version 1.85.0~beta.9+dfsg1 2025-02-17 11:14:05 +01:00
Cargo.toml New upstream version 1.85.0~beta.9+dfsg1 2025-02-17 11:14:05 +01:00
messages.ftl New upstream version 1.84.0+dfsg1 2025-01-11 15:57:26 +01:00
README.md New upstream version 1.83.0+dfsg1 2024-11-29 22:33:13 +01:00

The driver crate is effectively the "main" function for the rust compiler. It orchestrates the compilation process and "knits together" the code from the other crates within rustc. This crate itself does not contain any of the "main logic" of the compiler (though it does have some code related to pretty printing or other minor compiler options).

For more information about how the driver works, see the rustc dev guide.