rust/src/librustc_driver
bors 7bbcd005b3 Auto merge of #52805 - ljedrz:format_str_literal, r=petrochenkov
Don't format!() string literals

Prefer `to_string()` to `format!()` take 2, this time targetting string literals. In some cases (`&format!("...")` -> `"..."`) also removes allocations. Occurences of `format!("")` are changed to `String::new()`.
2018-07-30 06:29:39 +00:00
..
profile Auto merge of #52805 - ljedrz:format_str_literal, r=petrochenkov 2018-07-30 06:29:39 +00:00
build.rs
Cargo.toml Remove unused rustc_driver dependency on ar 2018-07-07 10:52:19 +02:00
derive_registrar.rs
driver.rs Auto merge of #52355 - pietroalbini:zfeature, r=eddyb 2018-07-28 23:10:10 +00:00
lib.rs Auto merge of #52805 - ljedrz:format_str_literal, r=petrochenkov 2018-07-30 06:29:39 +00:00
pretty.rs Deny bare trait objects in librustc_driver 2018-07-12 09:11:39 +02:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
test.rs Auto merge of #52285 - ljedrz:dyn_librustc_driver, r=nikomatsakis 2018-07-17 02:50:14 +00: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.