From 3c2e138b6dabbdc34876b83b0f3ce6bb0feb98cc Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Wed, 6 Oct 2021 16:29:00 +0200 Subject: [PATCH] Enable wayland by default --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index ef5905a..27b9df4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,11 @@ keywords = ["cargo", "ui", "gui"] repository = "https://github.com/sixtyfpsui/cargo-ui" resolver = "2" +[features] +x11 = ["sixtyfps/x11"] +wayland = ["sixtyfps/wayland"] +default = ["x11", "wayland"] + [dependencies] sixtyfps = "0.1.3" tokio = { version = "1", features= ["full"] }