Allow X11 and Wayland per default

This commit is contained in:
Fabian Stamm
2024-08-18 23:50:48 +02:00
parent c970c1dfbd
commit 3c44286570
4 changed files with 45 additions and 4 deletions

View File

@ -3,10 +3,15 @@ name = "ACL_Editor"
version = "0.1.0"
edition = "2021"
[features]
default = ["wayland", "x11"]
wayland = ["eframe/wayland"]
x11 = ["eframe/x11"]
[dependencies]
anyhow = "1"
eframe = { version = "0.28.1", features = [
"wayland",
"wgpu",
"default_fonts",
], default-features = false }