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"
|
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
|
|
|
|
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]
|
2019-01-11 13:30:45 -08:00
|
|
|
cc = "1.0"
|
2019-01-07 17:57:27 -08:00
|
|
|
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"
|
2019-01-07 17:57:27 -08:00
|
|
|
regex = "1"
|
2019-03-12 11:50:16 -07:00
|
|
|
rsass = "0.9.8"
|
2019-01-04 16:50:52 -08:00
|
|
|
|
2019-01-04 17:01:26 -08:00
|
|
|
[dependencies.tree-sitter]
|
2019-02-05 12:25:06 -08:00
|
|
|
version = ">= 0.3.7"
|
2019-01-04 17:01:26 -08:00
|
|
|
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"]
|
2019-01-21 14:22:35 -08:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-25 12:05:21 -08:00
|
|
|
rand = "0.6.4"
|
2019-01-21 14:22:35 -08:00
|
|
|
spin = "0.5"
|
2019-02-22 16:15:36 -08:00
|
|
|
tempfile = "3"
|