Add base parser

This commit is contained in:
Mark Skelton
2023-01-06 22:27:05 -06:00
parent 9b4712478f
commit 9990002deb
17 changed files with 437137 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
[package]
name = "tree-sitter-mql5"
description = "mql5 grammar for the tree-sitter parsing library"
version = "0.0.1"
keywords = ["incremental", "parsing", "mql5"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-mql5"
edition = "2018"
license = "ISC"
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"