Prepare for using custom vertex type

This commit is contained in:
Hanno Braun 2024-10-31 21:45:18 +01:00
parent 0e4ef20b81
commit 039a6245ef
2 changed files with 15 additions and 0 deletions

View File

@ -186,6 +186,20 @@ name = "bytemuck"
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d"
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.85",
]
[[package]]
name = "bytes"

View File

@ -13,3 +13,4 @@ winit = "*"
[dependencies.bytemuck]
version = "*"
features = ["derive"]