diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-10-04 13:39:56 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-10-04 13:39:56 +0200 |
| commit | dc87cd894bad9ad0202dcd4a89e7d0af47c53fc9 (patch) | |
| tree | 19fbc45b90d717b2e150f6ab711b234d9102e423 /Cargo.toml | |
Initial Commit
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..90deb28 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-apinotation" +description = "apinotation grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "apinotation"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-apinotation" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20.10" + +[build-dependencies] +cc = "1.0" |