rustc_driver/
lib.rs

1// This crate is intentionally empty and a re-export of `rustc_driver_impl` to allow the code in
2// `rustc_driver_impl` to be compiled in parallel with other crates.
3
4// tidy-alphabetical-start
5#![allow(internal_features)]
6#![doc(rust_logo)]
7#![feature(rustdoc_internals)]
8// tidy-alphabetical-end
9
10pub use rustc_driver_impl::*;