mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	This pulls in https://github.com/servo/rust-smallvec/pull/282, which gives some small wins for rustc.
		
			
				
	
	
		
			29 lines
		
	
	
		
			875 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			875 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_query_system"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[lib]
 | 
						|
doctest = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
rustc_arena = { path = "../rustc_arena" }
 | 
						|
tracing = "0.1"
 | 
						|
rustc-rayon-core = { version = "0.4.0", optional = true }
 | 
						|
rustc_ast = { path = "../rustc_ast" }
 | 
						|
rustc_data_structures = { path = "../rustc_data_structures" }
 | 
						|
rustc_errors = { path = "../rustc_errors" }
 | 
						|
rustc_feature = { path = "../rustc_feature" }
 | 
						|
rustc_hir = { path = "../rustc_hir" }
 | 
						|
rustc_index = { path = "../rustc_index" }
 | 
						|
rustc_macros = { path = "../rustc_macros" }
 | 
						|
rustc_serialize = { path = "../rustc_serialize" }
 | 
						|
rustc_session = { path = "../rustc_session" }
 | 
						|
rustc_span = { path = "../rustc_span" }
 | 
						|
rustc_target = { path = "../rustc_target" }
 | 
						|
parking_lot = "0.11"
 | 
						|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
 | 
						|
 | 
						|
[features]
 | 
						|
rustc_use_parallel_compiler = ["rustc-rayon-core"]
 |