forked from EmmyLuaLs/emmylua-analyzer-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 952 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 952 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
42
43
44
[package]
name = "emmylua_check"
version = "0.22.0"
edition = "2024"
authors = ["CppCXY"]
description = "A command-line tool for checking lua code."
license = "MIT"
repository = "https://github.com/CppCXY/emmylua-analyzer-rust"
readme = "README.md"
keywords = ["emmylua", "doc", "lua", "cli"]
categories = ["development-tools"]
[dependencies]
# local
emmylua_code_analysis.workspace = true
emmylua_parser.workspace = true
# external
serde.workspace = true
serde_json.workspace = true
lsp_types.workspace = true
log.workspace = true
fern.workspace = true
rowan.workspace = true
walkdir.workspace = true
tokio-util.workspace = true
ansi_term.workspace = true
tokio.workspace = true
[dependencies.clap]
workspace = true
optional = true
[dependencies.mimalloc]
workspace = true
optional = true
[[bin]]
name = "emmylua_check"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["dep:clap", "dep:mimalloc", "emmylua_code_analysis/reqwest"]