# Objective - Use `std140_size_static()` everywhere instead of manual sizes as the crevice rewrite appears to have fixed all the problems as it claimed to do. I've tested `3d_scene_pipelined`, `bevymark_pipelined`, and `load_gltf_pipelined` and all three look fine.
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bevy_sprite2"
 | 
						|
version = "0.5.0"
 | 
						|
edition = "2021"
 | 
						|
authors = [
 | 
						|
    "Bevy Contributors <bevyengine@gmail.com>",
 | 
						|
    "Carter Anderson <mcanders1@gmail.com>",
 | 
						|
]
 | 
						|
description = "Provides sprite functionality for Bevy Engine"
 | 
						|
homepage = "https://bevyengine.org"
 | 
						|
repository = "https://github.com/bevyengine/bevy"
 | 
						|
license = "MIT"
 | 
						|
keywords = ["bevy"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
# bevy
 | 
						|
bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" }
 | 
						|
bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" }
 | 
						|
bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" }
 | 
						|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" }
 | 
						|
bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" }
 | 
						|
bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" }
 | 
						|
bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" }
 | 
						|
bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = [
 | 
						|
    "bevy",
 | 
						|
] }
 | 
						|
bevy_render2 = { path = "../bevy_render2", version = "0.5.0" }
 | 
						|
bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" }
 | 
						|
bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" }
 | 
						|
 | 
						|
# other
 | 
						|
bytemuck = { version = "1.5", features = ["derive"] }
 | 
						|
crevice = { path = "../../crates/crevice", version = "0.8.0", features = ["glam"] }
 | 
						|
guillotiere = "0.6.0"
 | 
						|
thiserror = "1.0"
 | 
						|
rectangle-pack = "0.4"
 | 
						|
serde = { version = "1", features = ["derive"] }
 |