tree-sitter-stack-graphs-typescript 0.1.0

Stack graphs definition for TypeScript using tree-sitter-typescript
Documentation
[package]
name = "tree-sitter-stack-graphs-typescript"
version = "0.1.0"
description = "Stack graphs definition for TypeScript using tree-sitter-typescript"
readme = "README.md"
keywords = ["tree-sitter", "stack-graphs", "typescript"]
authors = ["Hendrik van Antwerpen <hendrikvanantwerpen@github.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"

[[bin]]
name = "tree-sitter-stack-graphs-typescript"
path = "rust/bin.rs"
required-features = ["cli"]

[lib]
path = "rust/lib.rs"
test = false

[[test]]
name = "test"
path = "rust/test.rs"
harness = false
required-features = ["test"] # should be a forced feature, but Cargo does not support those

[features]
default = ["test"] # test is enabled by default because we cannot specify it as a forced featured for [[test]] above
cli = ["anyhow", "clap", "tree-sitter-stack-graphs/cli"]
test = ["anyhow", "tree-sitter-stack-graphs/cli"]

[dependencies]
anyhow = { version = "1.0", optional = true }
clap = { version = "3", optional = true }
glob = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
stack-graphs = { version = "0.10", path = "../../stack-graphs" }
tree-sitter-stack-graphs = { version = "0.6", path = "../../tree-sitter-stack-graphs" }
tree-sitter-typescript = "0.20.2"
tsconfig = "0.1.0"