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
49 lines (43 loc) · 1000 Bytes
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1000 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
45
46
47
48
49
[package]
name = "emmylua_doc_cli"
version = "0.22.0"
edition = "2024"
authors = ["CppCXY"]
description = "A command-line tool for generating lua documentation."
license = "MIT"
repository = "https://github.com/CppCXY/emmylua-analyzer-rust"
readme = "README.md"
keywords = ["emmylua", "doc", "lua", "cli"]
categories = ["development-tools"]
include = [
"Cargo.toml",
"src/**",
"template/**",
]
[dependencies]
# local
emmylua_code_analysis.workspace = true
emmylua_parser.workspace = true
# external
serde.workspace = true
serde_json.workspace = true
lsp_types.workspace = true
rowan.workspace = true
walkdir.workspace = true
tera.workspace = true
include_dir.workspace = true
num-traits.workspace = true
log.workspace = true
fern.workspace = true
[dependencies.clap]
workspace = true
optional = true
[dependencies.mimalloc]
workspace = true
optional = true
[[bin]]
name = "emmylua_doc_cli"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["dep:clap", "dep:mimalloc"]