25 unstable releases

0.12.0 Dec 11, 2024
0.11.3 May 31, 2024
0.11.2 Mar 8, 2024
0.11.0 Jul 17, 2023
0.0.1 Jun 3, 2021

#31 in Visualization

Download history 966/week @ 2024-12-20 719/week @ 2024-12-27 2355/week @ 2025-01-03 2347/week @ 2025-01-10 2451/week @ 2025-01-17 1993/week @ 2025-01-24 2377/week @ 2025-01-31 2508/week @ 2025-02-07 2023/week @ 2025-02-14 2549/week @ 2025-02-21 1835/week @ 2025-02-28 2171/week @ 2025-03-07 3229/week @ 2025-03-14 2862/week @ 2025-03-21 2438/week @ 2025-03-28 1958/week @ 2025-04-04

10,961 downloads per month
Used in 8 crates (4 directly)

MIT/Apache

320KB
7.5K SLoC

tree-sitter-graph

DOI

The tree-sitter-graph library defines a DSL for constructing arbitrary graph structures from source code that has been parsed using tree-sitter.

Usage

This package can be used either as a library or command-line program.

To use it as a library, add the following to your Cargo.toml:

[dependencies]
tree-sitter-graph = "0.12"

To use it as a program, install it via cargo install:

$ cargo install --features cli tree-sitter-graph
$ tree-sitter-graph --help

Development

The project is written in Rust, and requires a recent version installed. Rust can be installed and updated using rustup.

Build the project by running:

$ cargo build

Run the tests by running:

$ cargo test

The project consists of a library and a CLI. By default, running cargo only applies to the library. To run cargo commands on the CLI as well, add --features cli or --all-features.

Sources are formatted using the standard Rust formatted, which is applied by running:

$ cargo fmt

Dependencies

~4–20MB
~227K SLoC