rust-analyzer/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 10:33:48 +00:00
[package]
name = "lsp-server"
version = "0.7.0"
2022-05-14 10:33:48 +00:00
description = "Generic LSP server scaffold."
license = "MIT OR Apache-2.0"
2022-07-08 13:44:49 +00:00
repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server"
2022-05-14 10:33:48 +00:00
edition = "2021"
[dependencies]
2022-06-10 14:30:09 +00:00
log = "0.4.17"
2023-03-25 13:43:08 +00:00
serde_json.workspace = true
serde.workspace = true
crossbeam-channel = "0.5.6"
2022-05-14 10:33:48 +00:00
[dev-dependencies]
2023-02-14 13:59:50 +00:00
lsp-types = "=0.94"