Crates.io | tree-sitter-graph |
lib.rs | tree-sitter-graph |
version | 0.11.3 |
source | src |
created_at | 2021-06-03 18:16:57.280223 |
updated_at | 2024-05-31 15:13:01.414876 |
description | Construct graphs from parsed source code |
homepage | https://github.com/tree-sitter/tree-sitter-graph/ |
repository | https://github.com/tree-sitter/tree-sitter-graph/ |
max_upload_size | |
id | 405783 |
size | 477,237 |
The tree-sitter-graph
library defines a DSL for constructing arbitrary graph
structures from source code that has been parsed using tree-sitter.
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
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