Fix workspace build by removing unnecessary exedev feature from fabro-api

fabro-api doesn't use `SandboxProvider::Exe` but was unconditionally
enabling `exedev` on fabro-workflows. Cargo feature unification made
the `Exe` variant exist while fabro-cli's cfg-gated match arms were
inactive, causing non-exhaustive pattern errors in workspace builds.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-19 08:52:28 -04:00
parent e477c19646
commit 8b52e92d4c

View file

@ -13,7 +13,7 @@ fabro-config = { path = "../fabro-config" }
fabro-graphviz = { path = "../fabro-graphviz" }
fabro-hooks = { path = "../fabro-hooks" }
fabro-interview = { path = "../fabro-interview" }
fabro-workflows = { path = "../fabro-workflows", features = ["exedev"] }
fabro-workflows = { path = "../fabro-workflows" }
fabro-daytona = { path = "../fabro-daytona" }
fabro-github = { path = "../fabro-github" }
fabro-agent = { path = "../fabro-agent" }