Skip to content

Commit 3ad8ef1

Browse files
authored
Update dependencies (#443)
- Updated `thiserror` to 2. - Removed local `pixels` dependency in examples. - Updated dependencies for all examples.
1 parent 92c664d commit 3ad8ef1

8 files changed

Lines changed: 59 additions & 21 deletions

File tree

Cargo.lock

Lines changed: 50 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ include = [
2222
[dependencies]
2323
bytemuck = "1"
2424
raw-window-handle = "0.6"
25-
thiserror = "1"
25+
thiserror = "2"
2626
ultraviolet = "0.10"
2727
wgpu = "27"
2828

examples/conway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ default = ["optimize"]
1212
[dependencies]
1313
byteorder = "1"
1414
getrandom = "0.2"
15-
clipline = "0.1.1"
15+
clipline = "0.1"
1616
randomize = "3"
1717

1818
env_logger.workspace = true

examples/imgui-winit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ optimize = ["log/release_max_level_warn"]
1010
default = ["optimize"]
1111

1212
[dependencies]
13-
pixels = { path = "../.." }
1413
imgui = "0.12"
15-
imgui-wgpu = { git = "https://github.com/Yatekii/imgui-wgpu-rs", rev = "3db5c5a" }
14+
imgui-wgpu = "0.26"
1615
imgui-winit-support = "0.13"
1716
winit = "0.30"
1817
winit_input_helper = "0.17"
1918

2019
env_logger.workspace = true
2120
error-iter.workspace = true
2221
log.workspace = true
22+
pixels.workspace = true

examples/invaders/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ byteorder = "1"
1414
game-loop = { version = "=1.3.0", features = ["winit"] }
1515
getrandom = "0.2"
1616
gilrs = "0.10"
17-
pixels = { path = "../.." }
1817
simple-invaders = { path = "simple-invaders" }
1918

2019
env_logger.workspace = true
2120
error-iter.workspace = true
2221
log.workspace = true
22+
pixels.workspace = true
2323
winit.workspace = true
2424
winit_input_helper.workspace = true

examples/minimal-egui/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ optimize = ["log/release_max_level_warn"]
1010
default = ["optimize"]
1111

1212
[dependencies]
13-
pixels = { path = "../.." }
1413
egui = "0.33"
15-
egui-wgpu = "0.33.0"
14+
egui-wgpu = "0.33"
1615
egui-winit = { version = "0.33", default-features = false, features = ["links"] }
1716
winit = "0.30"
1817
winit_input_helper = "0.17"
1918

2019
env_logger.workspace = true
2120
error-iter.workspace = true
2221
log.workspace = true
23-
22+
pixels.workspace = true

examples/minimal-winit-android/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ winit = { workspace = true, features = ["android-native-activity"] }
1414
env_logger.workspace = true
1515

1616
[target.'cfg(target_os = "android")'.dependencies]
17-
android_logger = "0.15.0"
17+
android_logger = "0.15"
1818

1919
[[bin]]
2020
# Rename the bin to avoid https://github.com/rust-lang/cargo/issues/6313

examples/tiny-skia-winit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ optimize = ["log/release_max_level_warn"]
1010
default = ["optimize"]
1111

1212
[dependencies]
13-
tiny-skia = "0.11"
13+
tiny-skia = "0.12"
1414

1515
env_logger.workspace = true
1616
error-iter.workspace = true

0 commit comments

Comments
 (0)