mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
20 lines
381 B
Rust
20 lines
381 B
Rust
#![feature(assert_matches)]
|
|
#![feature(bool_to_option)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(hash_raw_entry)]
|
|
#![feature(let_else)]
|
|
#![feature(min_specialization)]
|
|
#![feature(extern_types)]
|
|
|
|
#[macro_use]
|
|
extern crate tracing;
|
|
#[macro_use]
|
|
extern crate rustc_data_structures;
|
|
#[macro_use]
|
|
extern crate rustc_macros;
|
|
|
|
pub mod cache;
|
|
pub mod dep_graph;
|
|
pub mod ich;
|
|
pub mod query;
|