MiniZinc grammar for tree-sitter
at develop 28 lines 616 B view raw
1[package] 2name = "tree-sitter-minizinc" 3description = "MiniZinc grammar for the tree-sitter parsing library" 4version = "0.1.0" 5authors = ["Jip J. Dekker <jip@dekker.one>"] 6license = "MPL-2.0" 7readme = "bindings/rust/README.md" 8keywords = ["incremental", "parsing", "minizinc"] 9categories = ["parsing", "text-editors"] 10repository = "https://github.com/Dekker1/tree-sitter-minizinc" 11edition = "2018" 12 13build = "bindings/rust/build.rs" 14include = [ 15 "bindings/rust/*", 16 "grammar.js", 17 "queries/*", 18 "src/*", 19] 20 21[lib] 22path = "bindings/rust/lib.rs" 23 24[dependencies] 25tree-sitter = "0.19" 26 27[build-dependencies] 28cc = "1.0"