Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8a44c02

Browse files
committedFeb 4, 2023
Update to winit 0.28
1 parent 8fe38c0 commit 8a44c02

File tree

3 files changed

+190
-383
lines changed

3 files changed

+190
-383
lines changed
 

‎Cargo.lock

+180-374
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+9-8
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,15 @@ arrow2_convert = { git = "https://github.com/rerun-io/arrow2-convert", rev = "7e
6868
# arrow2 = { path = "../arrow2" }
6969
# arrow2_convert = { path = "../arrow2-convert/arrow2_convert" }
7070

71-
# 2023-02-04 - fix clear color color space
72-
ecolor = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
73-
eframe = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
74-
egui = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
75-
egui_extras = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
76-
egui-wgpu = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
77-
emath = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
78-
epaint = { git = "https://github.com/emilk/egui", rev = "e4eaf99072db45c6ce6f6d86f09d5b4de237df1e" }
71+
# 2023-02-04 - winit 0.28
72+
ecolor = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
73+
eframe = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
74+
egui = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
75+
egui_extras = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
76+
egui-wgpu = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
77+
emath = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
78+
epaint = { git = "https://github.com/emilk/egui", rev = "430cbe541ce3966129878e513cec7f64ef764249" }
79+
7980
# ecolor = { path = "../../egui/crates/ecolor" }
8081
# eframe = { path = "../../egui/crates/eframe" }
8182
# egui = { path = "../../egui/crates/egui" }

‎crates/re_renderer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ log = "0.4"
7272
pollster = "0.2"
7373
rand = "0.8"
7474
tracing = "0.1"
75-
winit = "0.27"
75+
winit = "0.28.1"
7676
zip = { version = "0.6", default-features = false, features = ["deflate"] }
7777

7878
# native

0 commit comments

Comments
 (0)
Please sign in to comment.