25 lines
		
	
	
		
			581 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			581 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_derive"
 | 
						|
version = "0.3.0"
 | 
						|
edition = "2018"
 | 
						|
authors = [
 | 
						|
    "Bevy Contributors <bevyengine@gmail.com>",
 | 
						|
    "Carter Anderson <mcanders1@gmail.com>",
 | 
						|
]
 | 
						|
description = "Provides derive implementations for Bevy Engine"
 | 
						|
homepage = "https://bevyengine.org"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT"
 | 
						|
keywords = ["bevy"]
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
[dependencies]
 | 
						|
Inflector = { version = "0.11.4", default-features = false }
 | 
						|
find-crate = "0.5"
 | 
						|
proc-macro2 = "1.0"
 | 
						|
quote = "1.0"
 | 
						|
syn = "1.0"
 | 
						|
uuid = { version = "0.8", features = ["v4", "serde"] }
 |