fix(rust): remove unused imports, variables, and dead code causing CI build failures

- Remove unused imports: AtomicBool, Future (provider.rs), debug (executor.rs)
- Remove unused import WorkflowScript (workflow.rs)
- Remove unused variables: tool_name, t_ctx, t_args (executor.rs)
- Remove dead variable class_indent (semantic_search.rs)

CI was failing with 'error: could not compile zesdex-infrastructure
due to 10 previous errors' caused by -D warnings treating unused
code as compilation errors.
This commit is contained in:
Cyrene (Mem)
2026-07-22 13:57:50 +07:00
parent b3a4d131d1
commit eb8cc17993
4 changed files with 1 additions and 18 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ use crate::tools::{arg_str, Tool, ToolCtx};
use crate::workflow::engine::execution::execute_workflow;
use crate::workflow::hive_mind::cycle::execute_cycle;
use crate::workflow::hive_mind::synthesis::synthesize_consensus;
use zesdex_domain::workflow::{CognitiveCycle, NodeDirective, NodeOutput, WorkflowScript};
use zesdex_domain::workflow::{CognitiveCycle, NodeDirective, NodeOutput};
/// Execute a multi-step workflow defined in YAML.
///