15 lines
		
	
	
		
			284 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_derive"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
[dependencies]
 | 
						|
syn = "1.0"
 | 
						|
proc-macro2 = "1.0"
 | 
						|
quote = "1.0"
 | 
						|
Inflector = { version = "0.11.4", default-features = false }
 | 
						|
darling = "0.10.2" |