2019-01-04 17:01:26 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter"
|
|
|
|
|
description = "Rust bindings to the Tree-sitter parsing library"
|
2020-11-02 20:53:08 -08:00
|
|
|
version = "0.17.1"
|
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/*",
|
2020-09-24 15:22:52 -07:00
|
|
|
"/src/*.h",
|
|
|
|
|
"/src/*.c",
|
|
|
|
|
"/src/unicode/*",
|
2019-01-04 17:01:26 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
regex = "1"
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
2020-12-20 16:09:17 -06:00
|
|
|
cc = "^1.0.58"
|
2019-01-04 17:01:26 -08:00
|
|
|
|
|
|
|
|
[lib]
|
2019-05-07 10:27:45 -07:00
|
|
|
path = "binding_rust/lib.rs"
|