# Objective - A utilities module is considered to be a bad practice and poor organization of code, so this fixes it. ## Solution - Split each struct into its own module - Move related lose functions into their own module - Move the last few bits into good places ## Testing - CI --------- Co-authored-by: Gino Valente <49806985+MrGVSV@users.noreply.github.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			862 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			862 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_reflect_derive"
 | 
						|
version = "0.15.0-dev"
 | 
						|
edition = "2021"
 | 
						|
description = "Derive implementations for bevy_reflect"
 | 
						|
homepage = "https://bevyengine.org"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT OR Apache-2.0"
 | 
						|
keywords = ["bevy"]
 | 
						|
 | 
						|
[lib]
 | 
						|
proc-macro = true
 | 
						|
 | 
						|
[features]
 | 
						|
default = []
 | 
						|
# When enabled, allows documentation comments to be processed by the reflection macros
 | 
						|
documentation = []
 | 
						|
# Enables macro logic related to function reflection
 | 
						|
functions = []
 | 
						|
 | 
						|
[dependencies]
 | 
						|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-dev" }
 | 
						|
proc-macro2 = "1.0"
 | 
						|
quote = "1.0"
 | 
						|
syn = { version = "2.0", features = ["full"] }
 | 
						|
uuid = { version = "1.1", features = ["v4"] }
 | 
						|
 | 
						|
[lints]
 | 
						|
workspace = true
 | 
						|
 | 
						|
[package.metadata.docs.rs]
 | 
						|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
 | 
						|
all-features = true
 |