2019-01-04 17:01:26 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter"
|
|
|
|
|
description = "Rust bindings to the Tree-sitter parsing library"
|
2023-03-13 12:21:19 -07:00
|
|
|
version = "0.20.10"
|
2019-01-04 17:01:26 -08:00
|
|
|
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
2023-02-15 14:03:36 -08:00
|
|
|
edition = "2021"
|
2019-01-04 17:01:26 -08:00
|
|
|
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"
|
2023-04-04 02:41:42 +03:00
|
|
|
rust-version.workspace = true
|
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]
|
2023-07-19 03:15:03 -04:00
|
|
|
regex = "1.9.1"
|
2019-01-04 17:01:26 -08:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-08-20 16:00:33 +03:00
|
|
|
bindgen = { version = "^0.66.1", optional = true }
|
2023-07-19 03:15:03 -04:00
|
|
|
cc = "^1.0.79"
|
2019-01-04 17:01:26 -08:00
|
|
|
|
|
|
|
|
[lib]
|
2019-05-07 10:27:45 -07:00
|
|
|
path = "binding_rust/lib.rs"
|