# Objective We should bump our version to 0.8.0-dev after releasing 0.7.0, according to our release checklist. ## Solution Do it.
		
			
				
	
	
		
			28 lines
		
	
	
		
			761 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			761 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy-crevice-derive"
 | 
						|
description = "Derive crate for the 'crevice' crate (Bevy version)"
 | 
						|
version = "0.8.0-dev"
 | 
						|
edition = "2018"
 | 
						|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
 | 
						|
documentation = "https://docs.rs/crevice-derive"
 | 
						|
homepage = "https://github.com/LPGhatguy/crevice"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT OR Apache-2.0"
 | 
						|
 | 
						|
[features]
 | 
						|
default = []
 | 
						|
 | 
						|
# Enable methods that let you introspect into the generated structs.
 | 
						|
debug-methods = []
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[dependencies]
 | 
						|
syn = "1.0.40"
 | 
						|
quote = "1.0.7"
 | 
						|
proc-macro2 = "1.0.21"
 | 
						|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.8.0-dev" }
 |