From aeee2378c0297ebc5addec9cfa80efa6c9a8992c Mon Sep 17 00:00:00 2001 From: ScanMountGoat Date: Wed, 30 Oct 2024 12:40:31 -0500 Subject: [PATCH] update example dependencies --- example/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/Cargo.toml b/example/Cargo.toml index 7b92a00..0386c13 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" winit = "0.30" wgpu = "23.0.0" futures = "0.3" -bytemuck = { version = "1.16", features = ["derive"] } -encase = { version = "0.9.0", features = ["glam"] } -glam = { version = "0.28.0", features = ["bytemuck"] } +bytemuck = { version = "1.19", features = ["derive"] } +encase = { version = "0.10.0", features = ["glam"] } +glam = { version = "0.29.1", features = ["bytemuck"] } [build-dependencies] wgsl_to_wgpu = { path = "../wgsl_to_wgpu" }