rust/lib/lsp-server/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
443 B
TOML
Raw Normal View History

2022-05-14 05:33:48 -05:00
[package]
name = "lsp-server"
version = "0.7.6"
2022-05-14 05:33:48 -05:00
description = "Generic LSP server scaffold."
license = "MIT OR Apache-2.0"
2022-07-08 08:44:49 -05:00
repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server"
2022-05-14 05:33:48 -05:00
edition = "2021"
[dependencies]
2022-06-10 09:30:09 -05:00
log = "0.4.17"
2023-11-15 05:17:36 -06:00
serde_json = "1.0.108"
2023-11-15 05:16:07 -06:00
serde = { version = "1.0.192", features = ["derive"] }
crossbeam-channel = "0.5.8"
2022-05-14 05:33:48 -05:00
[dev-dependencies]
lsp-types = "=0.95"
ctrlc = "3.4.1"
[lints]
workspace = true