The tree-sitter-stack-graphs crate lets you create stack graphs using the
tree-sitter grammar for a language.
To use this library, add the following to your Cargo.toml:
[dependencies]
tree-sitter-stack-graphs = "0.3"Check out our documentation for more details on how to use this library.
The command-line program for tree-sitter-stack-graphs lets you do stack
graph based analysis and lookup from the command line.
Install the program using cargo install as follows:
$ cargo install --features cli tree-sitter-stack-graphs
$ tree-sitter-stack-graphs --helpThe 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.
Run the CLI from source as follows:
$ cargo run --features cli -- ARGSSources are formatted using the standard Rust formatted, which is applied by running:
$ cargo fmt
Licensed under either of
at your option.