-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
35 lines (33 loc) · 846 Bytes
/
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
[package]
name = "emmylua_ls"
version = "0.4.0"
edition = "2021"
authors = ["CppCXY"]
description = "A language server for emmylua."
license = "MIT"
repository = "https://github.com/CppCXY/emmylua-analyzer-rust"
readme = "README.md"
keywords = ["emmylua", "doc", "lua"]
categories = ["development-tools"]
[dependencies]
# local
emmylua_code_analysis.workspace = true
emmylua_parser.workspace = true
# external
lsp-server.workspace = true
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
lsp-types.workspace = true
log.workspace = true
fern.workspace = true
chrono.workspace = true
notify.workspace = true
tokio-util.workspace = true
rowan.workspace = true
emmylua_codestyle.workspace = true
walkdir.workspace = true
structopt.workspace = true
rust-i18n.workspace = true
glob.workspace = true
serde_yml.workspace = true