-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
49 lines (46 loc) · 1.15 KB
/
Cargo.toml
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_code_analysis"
version = "0.7.0"
edition = "2021"
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/**",
]
[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
[package.metadata.i18n]
available-locales = ["en", "zh_CN", "zh_HK"]
default-locale = "en"