Skip to content

Commit

Permalink
fix: allow gui build without drm (#217)
Browse files Browse the repository at this point in the history
lact-daemon with default features depends on drm, which breaks build
without drm.
  • Loading branch information
pastalian authored Nov 25, 2023
1 parent 0db7173 commit 2009007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lact-gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 2009007

Please sign in to comment.