-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 897 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
[package]
name = "tree-sitter-mozcpp"
description = "Mozcpp grammar for the tree-sitter parsing library"
version = "0.20.4"
authors = ["Calixte Denizet <cdenizet@mozilla.com>"]
license = "MIT"
readme = "bindings/rust/README.md"
keywords = ["incremental", "parsing", "mozcpp"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/mozilla/rust-code-analysis"
edition = "2021"
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"src/*",
]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter-language="0.1.0"
[build-dependencies]
cc = "^1.0"
# This dependency is not used at all for this crate, but it is here so that
# dependabot can send notifications when there are updates for this grammar
tree-sitter-cpp = "0.23.4"
[package.metadata.cargo-udeps.ignore]
build = ["tree-sitter-cpp"]
[dev-dependencies]
tree-sitter = "=0.26.8"