14 lines
		
	
	
		
			236 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			236 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "example_plugin"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
[lib]
 | 
						|
crate-type = ["cdylib"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
bevy = { path = "../../../../bevy" }
 | 
						|
 | 
						|
[profile.release]
 | 
						|
debug = true |