2021-05-21 02:22:00 +03:00
|
|
|
[package]
|
|
|
|
name = "tree-sitter-context-predicate"
|
|
|
|
description = "context-predicate grammar for the tree-sitter parsing library"
|
|
|
|
version = "0.0.1"
|
|
|
|
keywords = ["incremental", "parsing", "context-predicate"]
|
|
|
|
categories = ["parsing", "text-editors"]
|
|
|
|
repository = "https://github.com/tree-sitter/tree-sitter-javascript"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2021-05-21 02:22:00 +03:00
|
|
|
license = "MIT"
|
|
|
|
build = "bindings/rust/build.rs"
|
2021-07-12 23:14:39 +03:00
|
|
|
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
|
2021-05-21 02:22:00 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "bindings/rust/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-06 08:37:08 +03:00
|
|
|
tree-sitter = "0.20"
|
2021-05-21 02:22:00 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0"
|