Skip to content

Commit 441bebe

Browse files
committed
fix(ci): properly disable audio feature for musl builds
The previous fix (PR #100) didn't fully disable the audio feature because the workspace dependency still had default-features enabled. This changes the workspace dependency for cortex-tui to have default-features = false, allowing cortex-cli to properly control which features are enabled via its own feature flags.
1 parent 0373d6b commit 441bebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ cortex-app-server = { path = "src/cortex-app-server" }
195195
cortex-commands = { path = "src/cortex-commands" }
196196
cortex-storage = { path = "src/cortex-storage" }
197197
cortex-core = { path = "src/cortex-core" }
198-
cortex-tui = { path = "src/cortex-tui" }
198+
cortex-tui = { path = "src/cortex-tui", default-features = false }
199199
cortex-tui-capture = { path = "src/cortex-tui-capture" }
200200
cortex-tui-components = { path = "src/cortex-tui-components" }
201201
cortex-update = { path = "src/cortex-update" }

0 commit comments

Comments
 (0)