mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 12:37:32 +00:00

This is temporarily needed for `x doc compiler` to work. They can be removed once the `Nonterminal` is removed (#124141).
12 lines
422 B
Rust
12 lines
422 B
Rust
// This crate is intentionally empty and a re-export of `rustc_driver_impl` to allow the code in
|
|
// `rustc_driver_impl` to be compiled in parallel with other crates.
|
|
|
|
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![cfg_attr(doc, recursion_limit = "256")] // FIXME(nnethercote): will be removed by #124141
|
|
#![doc(rust_logo)]
|
|
#![feature(rustdoc_internals)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub use rustc_driver_impl::*;
|