aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/Cargo.toml
blob: bb92747f2f0815aaed1b7152dfa87025ea4c3d1c (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
edition = "2018"
name = "ra_lsp_server"
version = "0.1.0"
authors = ["Aleksey Kladov <[email protected]>"]

[dependencies]
threadpool = "1.7.1"
relative-path = "0.4.0"
failure = "0.1.4"
failure_derive = "0.1.4"
serde_json = "1.0.34"
serde = "1.0.83"
drop_bomb = "0.1.0"
crossbeam-channel = "0.3.5"
flexi_logger = "0.10.0"
log = "0.4.3"
url_serde = "0.2.0"
lsp-types = "0.55.0"
walkdir = "2.2.7"
im = "12.0.0"
cargo_metadata = "0.7.0"
rustc-hash = "1.0"
parking_lot = "0.7.0"

thread_worker = { path = "../thread_worker" }
ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" }
ra_ide_api = { path = "../ra_ide_api" }
ra_arena = { path = "../ra_arena" }
gen_lsp_server = { path = "../gen_lsp_server" }
ra_vfs = { path = "../ra_vfs" }

[dev-dependencies]
tempfile = "3"
test_utils = { path = "../test_utils" }

[features]
jemalloc = [ "ra_ide_api/jemalloc" ]