forked from gren-lang/tree-sitter-gren
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 787 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "tree-sitter-gren"
description = "gren grammar for the tree-sitter parsing library"
authors = [
"Harry Sarson <harry.sarson@hotmail.co.uk>",
"Kolja Lampe <razzeee@gmail.com>"
]
homepage = "https://tree-sitter.github.io/tree-sitter/"
repository = "https://github.com/MaeBrooks/tree-sitter-gren"
keywords = ["gren", "tree", "sitter", "parsing", "incremental"]
categories = ["parser-implementations", "api-bindings", "text-editors", "parsing"]
edition = "2018"
license = "MIT"
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
"LICENSE.md",
]
# Keep in sync with package.json
version = "5.7.0"
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter = "0.20.10"
[build-dependencies]
cc = "1.0"