Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ license = "Apache-2.0"
publish = false
repository = "https://github.com/bunkerlab-net/graphify"
rust-version = "1.95"
version = "0.8.49"
version = "0.9.0"

[workspace.dependencies]
anyhow = "1"
Expand Down Expand Up @@ -185,6 +185,7 @@ http = ["graphify-serve/http"]
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
serde_json = { workspace = true }
tempfile = { workspace = true }

[lints]
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,14 @@ a Rust equivalent, and outputs are byte-identical where the test suite asserts i

- **26+ languages**, parsed with tree-sitter: Rust, Python, TypeScript, JavaScript, Go, Java, C, C++, C#, Ruby, PHP,
Swift, Kotlin, Scala, Bash, Lua, Elixir, Haskell, OCaml, Zig, Solidity, R, Julia, HTML, CSS, SQL, …
Also reads .NET project files (`.sln`, `.csproj`, `.fsproj`, `.vbproj`) and Razor components
Vue / Svelte / Astro single-file components (`.vue`, `.svelte`, `.astro`) are parsed through their `<script>` blocks (#1468).
Also reads .NET project files (`.sln`, `.csproj`, `.fsproj`, `.vbproj`), Razor components
(`.razor`, `.cshtml`) for package, project-reference, target-framework, and `@code` extraction,
and WPF/UWP XAML (`.xaml`) for `x:Class`, named controls, `{Binding}` paths, and ViewModel /
code-behind resolution (#1460),
Verilog/SystemVerilog (`.v`, `.sv`, `.svh`), BYOND DreamMaker
(`.dm`, `.dme` source plus `.dmi` icon sheets, `.dmm` maps, and `.dmf` interface forms),
CUDA (`.cu`, `.cuh`) routed through the C++ extractor,
CUDA (`.cu`, `.cuh`) and Metal (`.metal`) routed through the C++ extractor (#1480),
and MCP config files (`.mcp.json`,
`claude_desktop_config.json`, `mcp.json`, `mcp_servers.json`) — servers, commands, packages,
and env-var _names_ (values are never read).
Expand Down
Loading