rust/lib/lsp-server/Cargo.toml

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

17 lines
375 B
TOML
Raw Normal View History

2022-05-14 05:33:48 -05:00
[package]
name = "lsp-server"
version = "0.7.0"
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-03-25 08:43:08 -05:00
serde_json.workspace = true
serde.workspace = true
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"