 ffde86efa0
			
		
	
	
		ffde86efa0
		
	
	
	
	
		
			
			Objective During work on #3009 I've found that not all jobs use actions-rs, and therefore, an previous version of Rust is used for them. So while compilation and other stuff can pass, checking markup and Android build may fail with compilation errors. Solution This PR adds `action-rs` for any job running cargo, and updates the edition to 2021.
		
			
				
	
	
		
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "bevy_ecs_macros"
 | |
| version = "0.5.0"
 | |
| description = "Bevy ECS Macros"
 | |
| edition = "2021"
 | |
| license = "MIT OR Apache-2.0"
 | |
| 
 | |
| [lib]
 | |
| proc-macro = true
 | |
| 
 | |
| [dependencies]
 | |
| bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.5.0" }
 | |
| 
 | |
| syn = "1.0"
 | |
| quote = "1.0"
 | |
| proc-macro2 = "1.0"
 |