tree-sitter/cli/Cargo.toml

57 lines
1 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"
2019-02-25 12:55:05 -08:00
version = "0.14.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-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]
cc = "1.0"
ansi_term = "0.11"
2019-01-07 22:01:40 -08:00
difference = "2.0"
2019-01-04 16:50:52 -08:00
lazy_static = "1.2.0"
smallbitvec = "2.3.0"
clap = "2.32"
dirs = "1.0.2"
hashbrown = "0.1"
libloading = "0.5"
2019-02-19 11:24:50 -08:00
once_cell = "0.1.8"
2019-01-04 16:50:52 -08:00
serde = "1.0"
serde_derive = "1.0"
regex-syntax = "0.6.4"
regex = "1"
2019-03-12 11:50:16 -07:00
rsass = "0.9.8"
2019-01-04 16:50:52 -08:00
[dependencies.tree-sitter]
version = ">= 0.3.7"
path = "../lib"
2019-02-19 11:24:50 -08:00
[dependencies.tree-sitter-highlight]
version = ">= 0.1.0"
path = "../highlight"
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]
2019-01-25 12:05:21 -08:00
rand = "0.6.4"
spin = "0.5"
tempfile = "3"