-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 906 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
[package]
name = "prose-lsp"
version = "0.0.1"
edition = "2021"
license = "MIT"
authors = ["Freddie Gilbraith"]
repo = "https://github.com/FreddieGilbraith/simple-token-language-server"
homepage = "https://github.com/FreddieGilbraith/simple-token-language-server"
readme = "README.md"
description = """
A simple LSP that tokenizes all open files and provides all words as completions.
Useful for prose, or languages that use strings like enums (eg: typescript, javascript)
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ropey = "1.5.0"
serde_json = "1.0.78"
tokio = { version = "1.17.0", features = ["full"] }
tower-lsp = { version = "0.19.0", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
regex = "1.10.0"
itertools = "0.11.0"
clap = { version = "4.4.8", features = ["derive"] }
stringmetrics = "2.2.2"