Merge pull request #300 from aclysma/allow_building_with_winit_0.21

Change imgui-winit-support to allow winit versions beyond 0.20
This commit is contained in:
Joonas Javanainen 2020-02-15 11:09:16 +02:00 committed by GitHub
commit 2d2f4fe4ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ categories = ["gui"]
[dependencies]
imgui = { version = "0.3.0-pre", path = "../" }
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
winit-20 = { version = "0.20.0", package = "winit", optional = true }
winit-20 = { version = ">= 0.20", package = "winit", optional = true }
[features]
default = ["winit-19"]