This commit is contained in:
2023-10-16 22:02:26 +02:00
commit ef984491f7
20 changed files with 3752 additions and 0 deletions

26
Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "tree-sitter-lila"
description = "Lila grammar for the tree-sitter parsing library"
version = "0.0.1"
keywords = ["incremental", "parsing", "lila"]
categories = ["parsing", "text-editors"]
repository = "https://git.sr.ht/~rpqt/tree-sitter-lila"
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.3"
[build-dependencies]
cc = "1.0"