mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
23 lines
448 B
Rust
23 lines
448 B
Rust
#![feature(decl_macro)]
|
|
#![feature(let_chains)]
|
|
#![feature(thread_spawn_unchecked)]
|
|
#![feature(try_blocks)]
|
|
|
|
mod callbacks;
|
|
mod errors;
|
|
pub mod interface;
|
|
mod passes;
|
|
mod proc_macro_decls;
|
|
mod queries;
|
|
pub mod util;
|
|
|
|
pub use callbacks::setup_callbacks;
|
|
pub use interface::{run_compiler, Config};
|
|
pub use passes::DEFAULT_QUERY_PROVIDERS;
|
|
pub use queries::Queries;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|