From 37d39a100e1ee0d370a16228decd5600c65083db Mon Sep 17 00:00:00 2001 From: jsosulski Date: Mon, 13 Dec 2021 13:02:03 +0100 Subject: [PATCH] Enable default features on winit Currently neovide does not compile on Ubuntu (see #1092). If the second solution in #1092 is preferred, i.e. having x11 and wayland as features in neovide, I can also do that. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3c6df9b..7b7af35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ rand = "0.7" pin-project = "0.4.27" futures = "0.3.12" glutin = { git = "https://github.com/neovide/glutin", branch = "new-keyboard-all" } -winit = { git = "https://github.com/neovide/winit", branch = "new-keyboard-all", default-features = false } +winit = { git = "https://github.com/neovide/winit", branch = "new-keyboard-all" } gl = "0.14.0" swash = "0.1.4" clap="2.33.3"