mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			486 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			486 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(assert_matches)]
 | |
| #![feature(bool_to_option)]
 | |
| #![feature(core_intrinsics)]
 | |
| #![feature(hash_raw_entry)]
 | |
| #![feature(iter_zip)]
 | |
| #![feature(let_else)]
 | |
| #![feature(min_specialization)]
 | |
| #![feature(thread_local_const_init)]
 | |
| #![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
 | |
| 
 | |
| #[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;
 | 
