From e1f7cffdef493cbb82e85155d7fc4b21ec701e73 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Sat, 15 Nov 2025 01:54:46 +0000 Subject: [PATCH] path --- mcp_codebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp_codebase.py b/mcp_codebase.py index 0262ff4..7ccd27f 100644 --- a/mcp_codebase.py +++ b/mcp_codebase.py @@ -1559,7 +1559,7 @@ def parse_rust_file_cached(filepath_str: str, file_hash: str) -> tuple: logger.info(f"🔧 Parsing Rust file: {filepath}") - rust_helper = Path("./tools/target/release/rust_parser") + rust_helper = Path("./tools/target/release/parse_rust_ast") if not rust_helper.is_file(): logger.warning(f"Rust parser binary not found: {rust_helper}. Using fallback whole-file chunk for {filepath}") code = filepath.read_text(encoding="utf-8")