2019-01-04 17:01:26 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter"
|
|
|
|
|
description = "Rust bindings to the Tree-sitter parsing library"
|
2020-03-02 15:02:45 -08:00
|
|
|
version = "0.6.3"
|
2019-01-04 17:01:26 -08:00
|
|
|
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
|
|
|
|
license = "MIT"
|
2019-05-07 10:27:45 -07:00
|
|
|
readme = "binding_rust/README.md"
|
2019-01-04 17:01:26 -08:00
|
|
|
keywords = ["incremental", "parsing"]
|
|
|
|
|
categories = ["api-bindings", "parsing", "text-editors"]
|
2019-08-19 16:36:40 -07:00
|
|
|
repository = "https://github.com/tree-sitter/tree-sitter"
|
2019-01-04 17:01:26 -08:00
|
|
|
|
2019-05-07 10:27:45 -07:00
|
|
|
build = "binding_rust/build.rs"
|
|
|
|
|
|
2019-01-04 17:01:26 -08:00
|
|
|
include = [
|
2019-05-07 10:27:45 -07:00
|
|
|
"/binding_rust/*",
|
2019-01-04 17:01:26 -08:00
|
|
|
"/Cargo.toml",
|
2019-02-05 12:12:21 -08:00
|
|
|
"/include/*",
|
2019-01-04 17:01:26 -08:00
|
|
|
"/src/*",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
regex = "1"
|
|
|
|
|
serde = "1.0"
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
serde_derive = "1.0"
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
cc = "1.0"
|
|
|
|
|
|
|
|
|
|
[lib]
|
2019-05-07 10:27:45 -07:00
|
|
|
path = "binding_rust/lib.rs"
|