diff --git a/examples/egui/Cargo.toml b/examples/egui/Cargo.toml index a07a8164..2e8b60cd 100644 --- a/examples/egui/Cargo.toml +++ b/examples/egui/Cargo.toml @@ -37,7 +37,7 @@ winit = "0.28" # Opening URL's webbrowser = "0.8.2" # Creating textures -wgpu = "0.16" +wgpu = "0.17" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # Winit integration with egui diff --git a/rend3-egui/Cargo.toml b/rend3-egui/Cargo.toml index a7a7aa30..5d36e838 100644 --- a/rend3-egui/Cargo.toml +++ b/rend3-egui/Cargo.toml @@ -16,5 +16,5 @@ egui = "0.22.0" egui-wgpu = "0.22" glam = "0.24" rend3 = { version = "^0.3.0", path = "../rend3" } -wgpu = "0.16.1" +wgpu = "0.17.1" wgpu-types = "0.16.0" diff --git a/rend3-framework/Cargo.toml b/rend3-framework/Cargo.toml index 88fb811f..94e188f0 100644 --- a/rend3-framework/Cargo.toml +++ b/rend3-framework/Cargo.toml @@ -22,7 +22,7 @@ rend3 = { version = "0.3.0", path = "../rend3" } rend3-routine = { version = "0.3.0", path = "../rend3-routine" } thiserror = { version = "1" } winit = "0.28" -wgpu = "0.16.1" +wgpu = "0.17.1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # logging diff --git a/rend3-routine/Cargo.toml b/rend3-routine/Cargo.toml index b291ea90..e46da777 100644 --- a/rend3-routine/Cargo.toml +++ b/rend3-routine/Cargo.toml @@ -25,7 +25,7 @@ profiling = {version = "1", default-features = false } rend3 = { version = "^0.3.0", path = "../rend3" } rust-embed = { version = "6", features = ["interpolate-folder-path"] } serde = { version = "1", features = ["derive"] } -wgpu = "0.16.1" +wgpu = "0.17.1" wgpu-profiler = "0.12.0" [dev-dependencies] diff --git a/rend3-test/Cargo.toml b/rend3-test/Cargo.toml index 2181d2ec..af9cac59 100644 --- a/rend3-test/Cargo.toml +++ b/rend3-test/Cargo.toml @@ -20,7 +20,7 @@ glam = "0.24" image = { version = "0.24", default-features = false, features = ["png"] } rend3 = { path = "../rend3" } rend3-routine = { path = "../rend3-routine" } -wgpu = "0.16" +wgpu = "0.17" # These should be dev-deps but doing this allows us to have a single attribute on all tests # and not need to have conditional attributes on every single test. diff --git a/rend3/Cargo.toml b/rend3/Cargo.toml index d355dba0..d6d16ad7 100644 --- a/rend3/Cargo.toml +++ b/rend3/Cargo.toml @@ -57,7 +57,7 @@ serde = { version = "1", features = ["derive"] } smallvec = "1" smartstring = "1.0" thiserror = "1" -wgpu = "0.16.1" +wgpu = "0.17.1" wgpu-profiler = "0.12.0" [dev-dependencies]