mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	It seems that cargo can't conditionally propagate features when `default-features` is set to `false`. Signed-off-by: onur-ozkan <work@onurozkan.dev>
		
			
				
	
	
		
			16 lines
		
	
	
		
			234 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			234 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_index_macros"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
[dependencies]
 | 
						|
syn = { version = "2.0.9", features = ["full", "extra-traits"] }
 | 
						|
proc-macro2 = "1"
 | 
						|
quote = "1"
 | 
						|
 | 
						|
[features]
 | 
						|
nightly = []
 |