]>
Commit | Line | Data |
---|---|---|
dc87cd89 | 1 | [package] |
0e6205eb RBR |
2 | name = "tree-sitter-api-notation" |
3 | description = "api-notation grammar for the tree-sitter parsing library" | |
dc87cd89 | 4 | version = "0.0.1" |
0e6205eb | 5 | keywords = ["incremental", "parsing", "api-notation"] |
dc87cd89 | 6 | categories = ["parsing", "text-editors"] |
0e6205eb | 7 | repository = "https://github.com/tree-sitter/tree-sitter-api-notation" |
dc87cd89 RBR |
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.10" | |
24 | ||
25 | [build-dependencies] | |
26 | cc = "1.0" |