-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 839 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 839 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
34
35
36
37
38
39
40
41
[workspace]
members = [
".",
"tools/gram-lint",
"tools/lsp"
]
resolver = "2"
[workspace.package]
version = "0.3.6"
license = "MIT"
repository = "https://github.com/gram-data/tree-sitter-gram"
edition = "2021"
[package]
name = "tree-sitter-gram"
description = "Gram grammar for tree-sitter"
version.workspace = true
license.workspace = true
readme = "README.md"
keywords = ["incremental", "parsing", "tree-sitter", "gram"]
categories = ["parsing", "text-editors"]
repository.workspace = true
edition.workspace = true
autoexamples = false
publish = true
build = "bindings/rust/build.rs"
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter-language = "0.1"
[dev-dependencies]
tree-sitter = { version = "0.25" }
[build-dependencies]
cc = "1.0.87"