Skip to content

Commit

Permalink
Update winit requirement from 0.28 to 0.29
Browse files Browse the repository at this point in the history
Updates the requirements on [winit](https://github.com/rust-windowing/winit) to permit the latest version.
- [Release notes](https://github.com/rust-windowing/winit/releases)
- [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/winit@v0.28.0...v0.29.4)

---
updated-dependencies:
- dependency-name: winit
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 27, 2023
1 parent f0df67c commit 1bf0aad
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/animation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rend3-anim = { version = "^0.3.0", path = "../../rend3-anim" }
# Import gltf models
rend3-gltf = { version = "^0.3.0", path = "../../rend3-gltf" }
# windowing
winit = "0.28"
winit = "0.29"
image = { version = "0.24", default-features = false, features = ["jpeg"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/cube-no-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" }
# Provides `block_on` to wait for futures from sync code
pollster = "0.3"
# windowing
winit = "0.28"
winit = "0.29"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_log = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/cube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" }
# Framework that deals with the event loop, setting up the renderer, and platform differences.
rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" }
# windowing
winit = "0.28"
winit = "0.29"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_log = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" }
# Programmable render list that dictates how the scene renders
rend3-routine = { version = "^0.3.0",path = "../../rend3-routine" }
# Windowing
winit = "0.28"
winit = "0.29"
# Opening URL's
webbrowser = "0.8.2"
# Creating textures
Expand Down
2 changes: 1 addition & 1 deletion examples/scene-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ smallvec = "1"
tracy-client = { version = "0.16", optional = true }
wgpu = "0.18.0"
wgpu-profiler = "0.15.0"
winit = "0.28"
winit = "0.29"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/skinning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" }
# Import gltf models
rend3-gltf = { version = "^0.3.0", path = "../../rend3-gltf" }
# windowing
winit = "0.28"
winit = "0.29"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_log = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/static-gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" }
# Programmable render list that dictates how the scene renders
rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" }
# windowing
winit = "0.28"
winit = "0.29"
2 changes: 1 addition & 1 deletion examples/textured-quad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" }
# Programmable render list that dictates how the scene renders
rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" }
# windowing
winit = "0.28"
winit = "0.29"
# Load image
image = { version = "0.24", default-features = false, features = ["png"]}
2 changes: 1 addition & 1 deletion rend3-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ profiling = { version = "1", default-features = false }
rend3 = { version = "0.3.0", path = "../rend3" }
rend3-routine = { version = "0.3.0", path = "../rend3-routine" }
thiserror = { version = "1" }
winit = "0.28"
winit = "0.29"
wgpu = "0.18.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down

0 comments on commit 1bf0aad

Please sign in to comment.