1 2 3 4 5 6 7 8 9 10 11
// src/core/mod.rs pub mod graph; pub mod parser; pub mod context; pub mod agent_parser; pub mod prompt_parser; pub mod renderer; // 【关键修复】执行器涉及大量 I/O 和多线程,禁止在 WASM 目标下编译 #[cfg(not(target_arch = "wasm32"))] pub mod executor;