diff --git a/Cargo.toml b/Cargo.toml index 662fd21..7a46792 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ pollster = "0.2" [dev-dependencies] pixels-mocks = { path = "internals/pixels-mocks" } -winit = "0.26" +winit = "0.27" [workspace] members = [ diff --git a/examples/conway/Cargo.toml b/examples/conway/Cargo.toml index 548917b..6e0e87d 100644 --- a/examples/conway/Cargo.toml +++ b/examples/conway/Cargo.toml @@ -17,5 +17,5 @@ line_drawing = "1.0" log = "0.4" pixels = { path = "../.." } randomize = "3.0" -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" diff --git a/examples/custom-shader/Cargo.toml b/examples/custom-shader/Cargo.toml index 44b5bae..f0f3f60 100644 --- a/examples/custom-shader/Cargo.toml +++ b/examples/custom-shader/Cargo.toml @@ -14,5 +14,5 @@ bytemuck = "1.10" env_logger = "0.9" log = "0.4" pixels = { path = "../.." } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" diff --git a/examples/invaders/Cargo.toml b/examples/invaders/Cargo.toml index 63a78ee..7a1aba8 100644 --- a/examples/invaders/Cargo.toml +++ b/examples/invaders/Cargo.toml @@ -12,12 +12,12 @@ default = ["optimize"] [dependencies] byteorder = "1.3" env_logger = "0.9" -game-loop = { version = "0.9", features = ["window"] } +game-loop = { version = "0.10", features = ["winit"] } getrandom = "0.2" gilrs = "0.9" log = "0.4" pixels = { path = "../.." } randomize = "3.0" simple-invaders = { path = "simple-invaders" } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" diff --git a/examples/minimal-egui/Cargo.toml b/examples/minimal-egui/Cargo.toml index b1cc529..168d644 100644 --- a/examples/minimal-egui/Cargo.toml +++ b/examples/minimal-egui/Cargo.toml @@ -10,11 +10,11 @@ optimize = ["log/release_max_level_warn"] default = ["optimize"] [dependencies] -egui = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" } -egui-wgpu = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" } -egui-winit = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2", default-features = false, features = ["links"] } +egui = "0.19" +egui-wgpu = "0.19" +egui-winit = { version = "0.19", default-features = false, features = ["links"] } env_logger = "0.9" log = "0.4" pixels = { path = "../.." } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" diff --git a/examples/minimal-web/Cargo.toml b/examples/minimal-web/Cargo.toml index d3e5af7..fb19b09 100644 --- a/examples/minimal-web/Cargo.toml +++ b/examples/minimal-web/Cargo.toml @@ -12,8 +12,8 @@ default = ["optimize"] [dependencies] log = "0.4" pixels = { path = "../.." } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" [target.'cfg(target_arch = "wasm32")'.dependencies] console_error_panic_hook = "0.1" diff --git a/examples/minimal-winit/Cargo.toml b/examples/minimal-winit/Cargo.toml index a869288..73b5f30 100644 --- a/examples/minimal-winit/Cargo.toml +++ b/examples/minimal-winit/Cargo.toml @@ -13,5 +13,5 @@ default = ["optimize"] env_logger = "0.9" log = "0.4" pixels = { path = "../.." } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" diff --git a/examples/raqote-winit/Cargo.toml b/examples/raqote-winit/Cargo.toml index c559afc..afa8a4d 100644 --- a/examples/raqote-winit/Cargo.toml +++ b/examples/raqote-winit/Cargo.toml @@ -14,8 +14,8 @@ env_logger = "0.9" euclid = "0.22" log = "0.4" pixels = { path = "../.." } -winit = "0.26" -winit_input_helper = "0.12" +winit = "0.27" +winit_input_helper = "0.13" [dependencies.raqote] git = "https://github.com/jrmuizel/raqote.git"