fix: allow gui build without drm (#217)

lact-daemon with default features depends on drm, which breaks build
without drm.
This commit is contained in:
pastalian
2023-11-25 19:29:38 +09:00
committed by GitHub
parent 0db71731d4
commit 2009007c6b

View File

@@ -10,7 +10,7 @@ gtk-tests = []
[dependencies]
lact-client = { path = "../lact-client" }
lact-daemon = { path = "../lact-daemon" }
lact-daemon = { path = "../lact-daemon", default-features = false }
gtk = { version = "0.7", package = "gtk4", features = ["v4_6", "blueprint"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }