# Objective - Update vendor crevice to have the latest update from crevice 0.8.0 - Using https://github.com/ElectronicRU/crevice/tree/arrays which has the changes to make arrays work ## Solution - Also updated glam and hexasphere to only have one version of glam - From the original PR, using crevice to write GLSL code containing arrays would probably not work but it's not something used by Bevy
		
			
				
	
	
		
			21 lines
		
	
	
		
			524 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			524 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "crevice-tests"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
[features]
 | 
						|
wgpu-validation = ["wgpu", "naga", "futures"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
crevice = { path = ".." }
 | 
						|
crevice-derive = { path = "../crevice-derive", features = ["debug-methods"] }
 | 
						|
 | 
						|
anyhow = "1.0.44"
 | 
						|
bytemuck = "1.7.2"
 | 
						|
memoffset = "0.6.4"
 | 
						|
mint = "0.5.5"
 | 
						|
 | 
						|
futures = { version = "0.3.17", features = ["executor"], optional = true }
 | 
						|
naga = { version = "0.7.0", features = ["glsl-in", "wgsl-out"], optional = true }
 | 
						|
wgpu = { version = "0.11.0", optional = true }
 |