1 | [package]
|
2 | name = "tree-sitter-gitdiff"
|
3 | description = "gitdiff grammar for the tree-sitter parsing library"
|
4 | version = "0.0.1"
|
5 | keywords = ["incremental", "parsing", "gitdiff"]
|
6 | categories = ["parsing", "text-editors"]
|
7 | repository = "https://github.com/tree-sitter/tree-sitter-gitdiff"
|
8 | edition = "2018"
|
9 | license = "MIT"
|
10 |
|
11 | build = "bindings/rust/build.rs"
|
12 | include = [
|
13 | "bindings/rust/*",
|
14 | "grammar.js",
|
15 | "queries/*",
|
16 | "src/*",
|
17 | ]
|
18 |
|
19 | [lib]
|
20 | path = "bindings/rust/lib.rs"
|
21 |
|
22 | [dependencies]
|
23 | tree-sitter = "~0.20"
|
24 |
|
25 | [build-dependencies]
|
26 | cc = "1.0"
|