tree-sitter/cli/Cargo.toml

77 lines
1.4 KiB
TOML
Raw Normal View History

2019-01-04 16:50:52 -08:00
[package]
name = "tree-sitter-cli"
2019-02-05 12:22:02 -08:00
description = "CLI tool for developing, testing, and using Tree-sitter parsers"
2021-05-20 15:02:46 -07:00
version = "0.19.5"
2019-01-04 16:50:52 -08:00
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
edition = "2018"
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"
2019-01-04 16:50:52 -08:00
[[bin]]
name = "tree-sitter"
path = "src/main.rs"
[[bench]]
name = "benchmark"
harness = false
2019-01-04 16:50:52 -08:00
[dependencies]
2021-02-26 10:55:20 -07:00
ansi_term = "0.12"
anyhow = "1.0"
atty = "0.2"
2019-01-04 16:50:52 -08:00
clap = "2.32"
difference = "2.0"
2021-02-26 10:55:20 -07:00
dirs = "3.0"
glob = "0.3.0"
html-escape = "0.2.6"
lazy_static = "1.2.0"
regex = "1"
regex-syntax = "0.6.4"
2019-01-04 16:50:52 -08:00
serde = "1.0"
serde_derive = "1.0"
smallbitvec = "2.3.0"
2021-02-26 10:55:20 -07:00
tiny_http = "0.8"
walkdir = "2.3"
2019-05-13 21:51:17 -07:00
webbrowser = "0.5.1"
2021-04-04 19:07:16 -05:00
which = "4.1.0"
2019-01-04 16:50:52 -08:00
[dependencies.tree-sitter]
2020-09-24 15:22:52 -07:00
version = ">= 0.17.0"
path = "../lib"
[dev-dependencies.tree-sitter]
version = ">= 0.17.0"
path = "../lib"
features = ["allocation-tracking"]
[dependencies.tree-sitter-config]
version = ">= 0.19.0"
path = "config"
2019-02-19 11:24:50 -08:00
[dependencies.tree-sitter-highlight]
2020-09-24 15:22:52 -07:00
version = ">= 0.3.0"
2019-02-19 11:24:50 -08:00
path = "../highlight"
[dependencies.tree-sitter-loader]
version = ">= 0.19.0"
path = "loader"
[dependencies.tree-sitter-tags]
version = ">= 0.1.0"
path = "../tags"
2019-01-04 16:50:52 -08:00
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.log]
version = "0.4.6"
features = ["std"]
[dev-dependencies]
2021-02-26 10:55:20 -07:00
rand = "0.8"
tempfile = "3"