From d8ee71e0409d8aa24a0656d0b59202b9147d7761 Mon Sep 17 00:00:00 2001 From: Will Pfleger Date: Fri, 29 May 2026 10:47:59 -0400 Subject: [PATCH] fix: suppress dead_code warnings on Phase 3 capability fields and remove stale conflict marker --- desktop/src-tauri/src/managed_agents/discovery.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/src-tauri/src/managed_agents/discovery.rs b/desktop/src-tauri/src/managed_agents/discovery.rs index ab9baa719..dd95a76dc 100644 --- a/desktop/src-tauri/src/managed_agents/discovery.rs +++ b/desktop/src-tauri/src/managed_agents/discovery.rs @@ -35,15 +35,15 @@ pub(crate) struct KnownAcpRuntime { /// runtime reads the canonical path directly or has no skill support. pub skill_dir: Option<&'static str>, // Phase 3: these fields are consumed by runtime.rs spawn logic to replace ad-hoc env var injection. - /// Whether this runtime supports ACP model switching mid-session. + #[allow(dead_code)] pub supports_acp_model_switching: bool, - /// Environment variable name used to set the model for this runtime, if any. + #[allow(dead_code)] pub model_env_var: Option<&'static str>, - /// Environment variable name used to set the LLM provider for this runtime, if any. + #[allow(dead_code)] pub provider_env_var: Option<&'static str>, - /// Whether the LLM provider is locked (not user-selectable) for this runtime. + #[allow(dead_code)] pub provider_locked: bool, - /// Default environment variables injected when spawning agents using this runtime. + #[allow(dead_code)] pub default_env: &'static [(&'static str, &'static str)], }