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.
		
			
				
	
	
		
			19 lines
		
	
	
		
			513 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			513 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_monomorphize"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[lib]
 | 
						|
doctest = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
 | 
						|
tracing = "0.1"
 | 
						|
rustc_data_structures = { path = "../rustc_data_structures" }
 | 
						|
rustc_hir = { path = "../rustc_hir" }
 | 
						|
rustc_index = { path = "../rustc_index" }
 | 
						|
rustc_middle = { path = "../rustc_middle" }
 | 
						|
rustc_session = { path = "../rustc_session" }
 | 
						|
rustc_span = { path = "../rustc_span" }
 | 
						|
rustc_target = { path = "../rustc_target" }
 |