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#![cfg_attr(doc, recursion_limit = "256")] // FIXME(nnethercote): will be removed by #124141
7#![doc(rust_logo)]
8#![feature(rustdoc_internals)]
9// tidy-alphabetical-end
10
11pub use rustc_driver_impl::*;