rust/lib/lsp-server/Cargo.toml

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

18 lines
418 B
TOML
Raw Normal View History

2022-05-14 05:33:48 -05:00
[package]
name = "lsp-server"
2023-12-06 14:56:04 -06:00
version = "0.7.5"
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.6"
2022-05-14 05:33:48 -05:00
[dev-dependencies]
2023-02-14 07:59:50 -06:00
lsp-types = "=0.94"
ctrlc = "3.4.1"