From 610b2dc6ce1b9ca39706595576b182894b4acc7c Mon Sep 17 00:00:00 2001 From: dzil123 <5725958+dzil123@users.noreply.github.com> Date: Sun, 5 Sep 2021 17:33:05 -0700 Subject: [PATCH] Enable winit default features by default, to avoid breakage --- imgui-winit-support/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui-winit-support/Cargo.toml b/imgui-winit-support/Cargo.toml index 9a5e2c4ec..78e02d9d9 100644 --- a/imgui-winit-support/Cargo.toml +++ b/imgui-winit-support/Cargo.toml @@ -19,7 +19,7 @@ winit-24 = { version = "0.24", package = "winit", default-features = false, opti winit-25 = { version = "0.25", package = "winit", default-features = false, optional = true } [features] -default = ["winit-24"] # TODO: Change to winit-25 when glutin has upgraded to it +default = ["winit-25/default"] test = ["winit-23/default", "winit-24/default", "winit-25/default"] # This is phrased as a negative (unlike most features) so that it needs to be