]> git.lizzy.rs Git - rust.git/blob - crates/ra_lsp_server/Cargo.toml
Merge #1951
[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_db = { path = "../ra_db" }
22 ra_cfg = { path = "../ra_cfg" }
23 ra_text_edit = { path = "../ra_text_edit" }
24 ra_ide_api = { path = "../ra_ide_api" }
25 lsp-server = "0.2.0"
26 ra_project_model = { path = "../ra_project_model" }
27 ra_prof = { path = "../ra_prof" }
28 ra_vfs_glob = { path = "../ra_vfs_glob" }
29
30 [dev-dependencies]
31 tempfile = "3"
32 test_utils = { path = "../test_utils" }
33
34 [features]
35 jemalloc = [ "ra_prof/jemalloc" ]