mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	* Update to proc_macro2 0.4 and related * Update to proc_macro2 0.4 and related * Update to proc_macro2 0.4 and related * Add proc_macro_gen feature * Update to the new rustfmt cli * A few proc-macro2 stylistic updates * Disable RUST_BACKTRACE by default * Allow rustfmt failure for now * Disable proc-macro2 nightly feature in verify-x86 Currently this causes bugs on nightly due to upstream rustc bugs, this should be temporary * Attempt to thwart mergefunc * Use static relocation model on i686
		
			
				
	
	
		
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "assert-instr-macro"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
test = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
proc-macro2 = { version = "0.4", features = ["nightly"] }
 | 
						|
quote = "0.6"
 | 
						|
syn = { version = "0.14", features = ["full"] }
 |