-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 861 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
[package]
name = "vimdoc-language-server"
version = "0.1.2"
edition = "2024"
rust-version = "1.85"
authors = ["Barrett Ruth <br@barrettruth.com>"]
description = "Language server for vim help files"
license = "MIT"
repository = "https://github.com/barrettruth/vimdoc-language-server"
readme = "README.md"
keywords = ["lsp", "vimdoc", "vim", "neovim", "language-server"]
categories = ["development-tools", "text-editors"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
lsp-server = "0.7"
lsp-types = { version = "0.97", features = ["proposed"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
glob = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
expect-test = "1"
tempfile = "3"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "warn"