diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-04 20:45:29 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-04 20:45:29 +0100 |
commit | 676cc2b5619ecd517df42b07dbc2c22449a47179 (patch) | |
tree | 622546b5b6df3cc05171a1b016365ffd612abcd6 /tree-sitter-yts/Cargo.toml | |
parent | style(yt/main): Use consistent use qualifications (diff) | |
download | yt-676cc2b5619ecd517df42b07dbc2c22449a47179.tar.gz yt-676cc2b5619ecd517df42b07dbc2c22449a47179.zip |
refactor(tree-sitter-yts): Move in tree
Diffstat (limited to 'tree-sitter-yts/Cargo.toml')
-rw-r--r-- | tree-sitter-yts/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tree-sitter-yts/Cargo.toml b/tree-sitter-yts/Cargo.toml new file mode 100644 index 0000000..5287c42 --- /dev/null +++ b/tree-sitter-yts/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "tree-sitter-yts" +description = "yts grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "yts"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-yts" +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" |