mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	With the arrival of min const generics, many alt-vec libraries have updated to use it in some way and arrayvec is no exception. Use the latest with minor refactoring. Also, rustc_workspace_hack is the only user of smallvec 0.6 in the entire tree, so drop it.
		
			
				
	
	
		
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
authors = ["The Rust Project Developers"]
 | 
						|
name = "rustc_index"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
[lib]
 | 
						|
doctest = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
arrayvec = { version = "0.7", default-features = false }
 | 
						|
rustc_serialize = { path = "../rustc_serialize" }
 | 
						|
rustc_macros = { path = "../rustc_macros" }
 |