You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Goal:** Move the CPU-intensive parsing and graph engine to Rust, keeping JS for CLI orchestration, MCP, and embeddings. This unlocks parallel parsing, incremental tree-sitter, lower memory usage, and optional standalone binary distribution.
41
41
42
-
### 1.1 — Rust Workspace & napi-rs Setup
42
+
### 1.1 — Rust Workspace & napi-rs Setup ✅
43
43
44
44
Bootstrap the Rust side of the project.
45
45
@@ -51,7 +51,7 @@ Bootstrap the Rust side of the project.
51
51
52
52
**Result:**`npm install` pulls a prebuilt binary; no Rust toolchain required for end users.
53
53
54
-
### 1.2 — Native tree-sitter Parsing
54
+
### 1.2 — Native tree-sitter Parsing ✅
55
55
56
56
Replace WASM-based parsing with native tree-sitter in Rust.
57
57
@@ -64,7 +64,7 @@ Replace WASM-based parsing with native tree-sitter in Rust.
64
64
65
65
**Affected files:**`src/parser.js` (becomes a thin JS wrapper over native addon)
0 commit comments