-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1008 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1008 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
[package]
name = "tree-sitter-objectscript"
description = "ObjectScript UDL grammar for tree-sitter"
version = "1.7.13"
keywords = ["incremental", "parsing", "objectscript", "udl"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/intersystems/tree-sitter-objectscript"
edition = "2021"
license = "MIT"
authors = [
"Dave McCaldon <davem@intersystems.com>",
"Hannah Kimura <hkimura@intersystems.com>",
]
build = "bindings/rust/build.rs"
include = [
"/LICENSE",
"/cargo_readme.md",
"/bindings/rust/build.rs",
"/bindings/rust/lib.rs",
"/common/scanner.h",
"/udl/src/parser.c",
"/udl/src/scanner.c",
"/udl/src/node-types.json",
"/udl/src/tree_sitter/parser.h",
"/udl/queries/highlights.scm",
"/udl/queries/indents.scm",
"/udl/queries/injections.scm",
"/udl/queries/studio-highlights.scm",
]
readme = "cargo_readme.md"
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter = ">=0.26.6"
tree-sitter-language = "0.1"
[build-dependencies]
cc = "1.0"