2019-01-04 16:50:52 -08:00
|
|
|
[package]
|
2019-01-04 17:01:26 -08:00
|
|
|
name = "tree-sitter-cli"
|
2024-02-24 17:25:53 -05:00
|
|
|
version.workspace = true
|
2019-02-05 12:22:02 -08:00
|
|
|
description = "CLI tool for developing, testing, and using Tree-sitter parsers"
|
2024-02-14 14:10:51 -05:00
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
2023-04-04 02:41:42 +03:00
|
|
|
rust-version.workspace = true
|
2024-02-14 14:10:51 -05:00
|
|
|
readme = "README.md"
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2019-01-04 16:50:52 -08:00
|
|
|
|
2019-01-04 17:01:26 -08:00
|
|
|
[[bin]]
|
|
|
|
|
name = "tree-sitter"
|
|
|
|
|
path = "src/main.rs"
|
2023-08-28 22:48:46 +03:00
|
|
|
doc = false
|
2019-01-04 17:01:26 -08:00
|
|
|
|
2019-02-01 14:39:37 -08:00
|
|
|
[[bench]]
|
|
|
|
|
name = "benchmark"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2023-10-31 16:56:11 -07:00
|
|
|
[features]
|
|
|
|
|
wasm = ["tree-sitter/wasm", "tree-sitter-loader/wasm"]
|
|
|
|
|
|
2019-01-04 16:50:52 -08:00
|
|
|
[dependencies]
|
2024-02-08 06:43:21 -05:00
|
|
|
ansi_term.workspace = true
|
|
|
|
|
anstyle.workspace = true
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
clap.workspace = true
|
|
|
|
|
ctrlc.workspace = true
|
|
|
|
|
difference.workspace = true
|
|
|
|
|
dirs.workspace = true
|
2024-02-21 11:47:59 -05:00
|
|
|
filetime.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
glob.workspace = true
|
2024-02-21 11:47:59 -05:00
|
|
|
heck.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
html-escape.workspace = true
|
|
|
|
|
indexmap.workspace = true
|
2024-02-12 16:13:22 -05:00
|
|
|
indoc.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
lazy_static.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
memchr.workspace = true
|
|
|
|
|
regex.workspace = true
|
|
|
|
|
regex-syntax.workspace = true
|
|
|
|
|
rustc-hash.workspace = true
|
|
|
|
|
semver.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_derive.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
smallbitvec.workspace = true
|
|
|
|
|
tiny_http.workspace = true
|
|
|
|
|
walkdir.workspace = true
|
|
|
|
|
wasmparser.workspace = true
|
|
|
|
|
webbrowser.workspace = true
|
2019-01-04 16:50:52 -08:00
|
|
|
|
2024-02-25 11:14:29 -08:00
|
|
|
tree-sitter.workspace = true
|
|
|
|
|
tree-sitter-config.workspace = true
|
|
|
|
|
tree-sitter-highlight.workspace = true
|
|
|
|
|
tree-sitter-loader.workspace = true
|
|
|
|
|
tree-sitter-tags.workspace = true
|
2020-03-04 14:27:31 -08:00
|
|
|
|
2019-01-21 14:22:35 -08:00
|
|
|
[dev-dependencies]
|
2023-07-19 22:19:43 -04:00
|
|
|
tree_sitter_proc_macro = { path = "src/tests/proc_macro", package = "tree-sitter-tests-proc-macro" }
|
2023-03-16 15:02:04 +02:00
|
|
|
|
2024-02-08 06:43:21 -05:00
|
|
|
rand.workspace = true
|
|
|
|
|
tempfile.workspace = true
|
|
|
|
|
pretty_assertions.workspace = true
|
|
|
|
|
ctor.workspace = true
|
|
|
|
|
unindent.workspace = true
|