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
63 lines (58 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 1.44 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "emmylua_code_analysis"
version = "0.22.0"
edition = "2024"
authors = ["CppCXY"]
description = "A library for analyzing lua code."
license = "MIT"
repository = "https://github.com/CppCXY/emmylua-analyzer-rust"
readme = "README.md"
keywords = ["emmylua", "doc", "lua", "code_analysis"]
categories = ["development-tools"]
include = [
"Cargo.toml",
"src/**",
"resources/**",
]
[dev-dependencies]
googletest.workspace = true
# Inherit workspace lints configuration
[lints]
workspace = true
[dependencies]
# local
emmylua_parser.workspace = true
emmylua_diagnostic_macro.workspace = true
# external
serde.workspace = true
serde_json.workspace = true
lsp_types.workspace = true
schemars.workspace = true
rowan.workspace = true
regex.workspace = true
internment.workspace = true
log.workspace = true
tokio-util.workspace = true
rust-i18n.workspace = true
walkdir.workspace = true
dirs.workspace = true
wax.workspace = true
percent-encoding.workspace = true
flagset.workspace = true
encoding_rs.workspace = true
url.workspace = true
smol_str.workspace = true
serde_with.workspace = true
include_dir.workspace = true
emmylua_codestyle.workspace = true
itertools.workspace = true
luars.workspace = true
reqwest = { workspace = true, optional = true }
schema_to_emmylua.workspace = true
hashbrown.workspace = true
[features]
default = []
reqwest = ["dep:reqwest"]
[package.metadata.i18n]
available-locales = ["en", "zh_CN", "zh_HK"]
default-locale = "en"