]> git.lizzy.rs Git - rust.git/blob - crates/ra_lsp_server/Cargo.toml
Merge #1780
[rust.git] / crates / ra_lsp_server / Cargo.toml
1 [package]
2 edition = "2018"
3 name = "ra_lsp_server"
4 version = "0.1.0"
5 authors = ["rust-analyzer developers"]
6
7 [dependencies]
8 threadpool = "1.7.1"
9 relative-path = "0.4.0"
10 serde_json = "1.0.34"
11 serde = { version = "1.0.83", features = ["derive"] }
12 crossbeam-channel = "0.3.5"
13 flexi_logger = "0.14.0"
14 log = "0.4.3"
15 lsp-types = { version = "0.61.0", features = ["proposed"] }
16 rustc-hash = "1.0"
17 parking_lot = "0.9.0"
18 jod-thread = "0.1.0"
19 ra_vfs = "0.4.0"
20 ra_syntax = { path = "../ra_syntax" }
21 ra_text_edit = { path = "../ra_text_edit" }
22 ra_ide_api = { path = "../ra_ide_api" }
23 lsp-server = "0.2.0"
24 ra_project_model = { path = "../ra_project_model" }
25 ra_prof = { path = "../ra_prof" }
26 ra_vfs_glob = { path = "../ra_vfs_glob" }
27
28 [dev-dependencies]
29 tempfile = "3"
30 test_utils = { path = "../test_utils" }
31
32 [features]
33 jemalloc = [ "ra_prof/jemalloc" ]