-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 764 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
[package]
name = "enums"
version = "0.0.1"
authors = ["Calixte Denizet <cdenizet@mozilla.com>"]
edition = "2024"
[dependencies]
clap = { version = "^4.0", features = ["derive"] }
askama = "^0.14"
tree-sitter = "=0.25.3"
tree-sitter-java = "=0.23.5"
tree-sitter-kotlin-ng = "1.1.0"
tree-sitter-typescript = "=0.23.2"
tree-sitter-javascript = "=0.23.1"
tree-sitter-python = "=0.23.6"
tree-sitter-rust = "=0.24.0"
tree-sitter-preproc = { path = "../tree-sitter-preproc", version = "=0.20.3" }
tree-sitter-ccomment = { path = "../tree-sitter-ccomment", version = "=0.20.3" }
tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp", version = "=0.20.4" }
tree-sitter-mozjs = { path = "../tree-sitter-mozjs", version = "=0.20.3" }
[profile.release]
strip = "debuginfo"