23 unstable releases

0.11.2 Mar 8, 2024
0.11.0 Jul 17, 2023
0.8.0 Mar 29, 2023
0.7.0 Oct 18, 2022
0.0.1 Jun 3, 2021

#20 in Science

Download history 1538/week @ 2024-01-25 1725/week @ 2024-02-01 2099/week @ 2024-02-08 1559/week @ 2024-02-15 2046/week @ 2024-02-22 2135/week @ 2024-02-29 1894/week @ 2024-03-07 2189/week @ 2024-03-14 2246/week @ 2024-03-21 1314/week @ 2024-03-28 1218/week @ 2024-04-04 1877/week @ 2024-04-11 1458/week @ 2024-04-18 1388/week @ 2024-04-25 1175/week @ 2024-05-02 1066/week @ 2024-05-09

5,441 downloads per month
Used in 6 crates (2 directly)

MIT/Apache

315KB
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.11"

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

~5–15MB
~172K SLoC