10 releases (breaking)

0.7.0 Oct 18, 2022
0.6.0 Aug 23, 2022
0.5.1 May 11, 2022
0.4.0 Mar 21, 2022
0.0.1 Jun 3, 2021

#132 in Science

Download history 2509/week @ 2022-12-01 3119/week @ 2022-12-08 2453/week @ 2022-12-15 624/week @ 2022-12-22 836/week @ 2022-12-29 1684/week @ 2023-01-05 1401/week @ 2023-01-12 1760/week @ 2023-01-19 2029/week @ 2023-01-26 2350/week @ 2023-02-02 2343/week @ 2023-02-09 2146/week @ 2023-02-16 1594/week @ 2023-02-23 1998/week @ 2023-03-02 2395/week @ 2023-03-09 2405/week @ 2023-03-16

8,767 downloads per month
Used in 3 crates (via tree-sitter-stack-graphs)

MIT/Apache

280KB
6.5K SLoC

tree-sitter-graph

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.7"

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

~3.5–5MB
~117K SLoC