2019-01-04 16:50:52 -08:00
|
|
|
[package]
|
2019-01-04 17:01:26 -08:00
|
|
|
name = "tree-sitter-cli"
|
2019-02-05 12:22:02 -08:00
|
|
|
description = "CLI tool for developing, testing, and using Tree-sitter parsers"
|
2023-03-13 12:22:10 -07:00
|
|
|
version = "0.20.8"
|
2019-01-04 16:50:52 -08:00
|
|
|
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
2023-02-15 14:03:36 -08:00
|
|
|
edition = "2021"
|
2019-02-05 12:22:02 -08:00
|
|
|
license = "MIT"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["incremental", "parsing"]
|
|
|
|
|
categories = ["command-line-utilities", "parsing"]
|
2019-08-19 16:36:40 -07:00
|
|
|
repository = "https://github.com/tree-sitter/tree-sitter"
|
2023-04-04 02:41:42 +03:00
|
|
|
rust-version.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"
|
|
|
|
|
|
2019-02-01 14:39:37 -08:00
|
|
|
[[bench]]
|
|
|
|
|
name = "benchmark"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2019-01-04 16:50:52 -08:00
|
|
|
[dependencies]
|
2023-07-19 03:15:03 -04:00
|
|
|
ansi_term = "0.12.1"
|
|
|
|
|
anyhow = "1.0.72"
|
|
|
|
|
atty = "0.2.14"
|
2019-01-04 16:50:52 -08:00
|
|
|
clap = "2.32"
|
2023-07-19 03:15:03 -04:00
|
|
|
ctrlc = { version = "3.4.0", features = ["termination"] }
|
|
|
|
|
difference = "2.0.0"
|
|
|
|
|
dirs = "5.0.1"
|
|
|
|
|
glob = "0.3.1"
|
|
|
|
|
html-escape = "0.2.13"
|
|
|
|
|
indexmap = "2.0.0"
|
|
|
|
|
lazy_static = "1.4.0"
|
2023-04-07 12:57:50 -05:00
|
|
|
path-slash = "0.2.1"
|
2023-07-19 03:15:03 -04:00
|
|
|
regex = "1.9.1"
|
|
|
|
|
regex-syntax = "0.7.4"
|
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
|
semver = "1.0.18"
|
|
|
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
2021-08-08 16:31:10 +02:00
|
|
|
smallbitvec = "2.5.1"
|
2022-11-09 04:55:52 +02:00
|
|
|
tiny_http = "0.12.0"
|
2023-07-19 03:15:03 -04:00
|
|
|
walkdir = "2.3.3"
|
|
|
|
|
webbrowser = "0.8.10"
|
|
|
|
|
which = "4.4.0"
|
2019-01-04 16:50:52 -08:00
|
|
|
|
2019-01-04 17:01:26 -08:00
|
|
|
[dependencies.tree-sitter]
|
2023-03-15 09:57:25 -04:00
|
|
|
version = "0.20.10"
|
2019-01-04 17:01:26 -08:00
|
|
|
path = "../lib"
|
|
|
|
|
|
2021-06-09 15:03:27 -04:00
|
|
|
[dependencies.tree-sitter-config]
|
2021-09-03 13:54:47 -07:00
|
|
|
version = "0.19.0"
|
2021-06-09 15:03:27 -04:00
|
|
|
path = "config"
|
|
|
|
|
|
2019-02-19 11:24:50 -08:00
|
|
|
[dependencies.tree-sitter-highlight]
|
2021-09-03 13:54:47 -07:00
|
|
|
version = "0.20"
|
2019-02-19 11:24:50 -08:00
|
|
|
path = "../highlight"
|
|
|
|
|
|
2021-06-09 12:51:28 -04:00
|
|
|
[dependencies.tree-sitter-loader]
|
2021-11-21 13:56:22 -08:00
|
|
|
version = "0.20"
|
2021-06-09 12:51:28 -04:00
|
|
|
path = "loader"
|
|
|
|
|
|
2020-03-04 14:27:31 -08:00
|
|
|
[dependencies.tree-sitter-tags]
|
2021-09-03 13:54:47 -07:00
|
|
|
version = "0.20"
|
2020-03-04 14:27:31 -08:00
|
|
|
path = "../tags"
|
|
|
|
|
|
2019-01-04 16:50:52 -08:00
|
|
|
[dependencies.serde_json]
|
2023-07-19 03:15:03 -04:00
|
|
|
version = "1.0.103"
|
2019-01-04 16:50:52 -08:00
|
|
|
features = ["preserve_order"]
|
|
|
|
|
|
|
|
|
|
[dependencies.log]
|
2023-07-19 03:15:03 -04:00
|
|
|
version = "0.4.19"
|
2019-01-04 16:50:52 -08:00
|
|
|
features = ["std"]
|
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
|
|
|
|
2023-07-19 03:15:03 -04:00
|
|
|
rand = "0.8.5"
|
|
|
|
|
tempfile = "3.6.0"
|
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
|
ctor = "0.2.4"
|
|
|
|
|
unindent = "0.2.2"
|
|
|
|
|
indoc = "2.0.3"
|
2021-06-23 01:02:07 +03:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-07-19 03:15:03 -04:00
|
|
|
toml = "0.7.6"
|