rustcodegraph 1.2.2 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +3 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## [1.2.4] - 2026-07-09
|
|
7
|
+
|
|
8
|
+
### Fixes
|
|
9
|
+
|
|
10
|
+
- Fixed the standalone macOS, Linux, and Windows installers so they can install current cargo-dist release archives without reporting a missing binary.
|
|
11
|
+
|
|
12
|
+
## [1.2.3] - 2026-07-09
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- Published a maintenance release with the latest packaging and release workflow updates.
|
|
17
|
+
|
|
5
18
|
## [1.2.2] - 2026-07-09
|
|
6
19
|
|
|
7
20
|
### Fixes
|
|
@@ -63,3 +76,4 @@
|
|
|
63
76
|
|
|
64
77
|
- Published a maintenance release with the latest packaging and release workflow updates.
|
|
65
78
|
[1.2.0]: https://github.com/hunzhiwange/rustcodegraph/releases/tag/v1.2.0
|
|
79
|
+
[1.2.4]: https://github.com/hunzhiwange/rustcodegraph/releases/tag/v1.2.4
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Semantic code intelligence for Claude Code, Cursor, Codex CLI, opencode, Hermes
|
|
|
12
12
|
|
|
13
13
|
[](https://www.npmjs.com/package/rustcodegraph)
|
|
14
14
|
[](https://opensource.org/licenses/MIT)
|
|
15
|
-
[](https://github.com/hunzhiwange/rustcodegraph/releases)
|
|
16
16
|
|
|
17
17
|
</div>
|
|
18
18
|
|
|
@@ -58,6 +58,8 @@ rustcodegraph install
|
|
|
58
58
|
|
|
59
59
|
The installer auto-detects supported agents and writes the MCP configuration they need to launch RustCodeGraph.
|
|
60
60
|
|
|
61
|
+
Optional for Codex users: add the bundled [RustCodeGraph skill](skills/rustcodegraph/SKILL.md) and keep `rustcodegraph watch --path <project-root>` running during active development so Codex is prompted to use fresh indexed context for code search, navigation, flow tracing, and impact analysis.
|
|
62
|
+
|
|
61
63
|
### 3. Index a Project
|
|
62
64
|
|
|
63
65
|
```bash
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "rustcodegraph",
|
|
26
|
-
"version": "1.2.
|
|
26
|
+
"version": "1.2.4"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -896,5 +896,5 @@
|
|
|
896
896
|
}
|
|
897
897
|
},
|
|
898
898
|
"requires": true,
|
|
899
|
-
"version": "1.2.
|
|
899
|
+
"version": "1.2.4"
|
|
900
900
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/hunzhiwange/rustcodegraph/releases/download/v1.2.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/hunzhiwange/rustcodegraph/releases/download/v1.2.4",
|
|
3
3
|
"bin": {
|
|
4
4
|
"rustcodegraph": "run-rustcodegraph.js"
|
|
5
5
|
},
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"zipExt": ".tar.xz"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
-
"version": "1.2.
|
|
93
|
+
"version": "1.2.4",
|
|
94
94
|
"volta": {
|
|
95
95
|
"node": "18.14.1",
|
|
96
96
|
"npm": "9.5.0"
|