rust/src/librustc_driver
bors f119bf2761 Auto merge of #62099 - Mark-Simulacrum:syntax-print-clean-2, r=eddyb
Remove io::Result from syntax::print

Since we're now writing directly to the vector, there's no need to
thread results through the whole printing infrastructure
2019-07-05 06:55:48 +00:00
..
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Update rustc-rayon version 2019-04-26 19:08:36 +02:00
lib.rs Add deny(unused_lifetimes) to all the crates that have deny(internal). 2019-06-11 14:11:59 +03:00
pretty.rs Auto merge of #62099 - Mark-Simulacrum:syntax-print-clean-2, r=eddyb 2019-07-05 06:55:48 +00:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06: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 guide.