# Objective
Fixes #4353. Fixes #4431. Picks up fixes for a panic for `gilrs` when `getGamepads()` is not available. 
## Solution
Update the `gilrs` to `v0.9.0`. Changelog can be seen here: dba36f9186
EDIT: Updated `uuid` to 1.1 to avoid duplicate dependencies. Added `nix`'s two dependencies as exceptions until `rodio` updates their deps.
		
	
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			517 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			517 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_reflect_derive"
 | 
						|
version = "0.8.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
 | 
						|
 | 
						|
[dependencies]
 | 
						|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.8.0-dev" }
 | 
						|
 | 
						|
syn = { version = "1.0", features = ["full"] }
 | 
						|
proc-macro2 = "1.0"
 | 
						|
quote = "1.0"
 | 
						|
uuid = { version = "1.1", features = ["v4"] }
 |