-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
33 lines (29 loc) · 858 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
[package]
name = "emacs-lsp-booster"
description = "Emacs LSP performance booster "
homepage = "https://github.com/blahgeek/emacs-lsp-booster"
repository = "https://github.com/blahgeek/emacs-lsp-booster"
readme = "README.md"
keywords = ["emacs", "lsp"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
anyhow = "1.0"
lazy_static = "1.4"
smallvec = "1.11"
env_logger = "0.10"
log = "0.4.20"
clap = { version = "4.4", features = ["derive", "cargo"] }
clap-verbosity-flag = "2.1.1"
which = "6.0.1"
[[example]]
name = "native-json-parser"
crate-type = ["cdylib"]
[dev-dependencies]
emacs = "0.18"
tempfile = "3.9"