]> git.lizzy.rs Git - rust.git/blob - crates/ra_lsp_server/Cargo.toml
9b7dcb6e9ada277730c1daef727c29aeca343588
[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 [lib]
8 doctest = false
9
10 [dependencies]
11 threadpool = "1.7.1"
12 relative-path = "1.0.0"
13 serde_json = "1.0.34"
14 serde = { version = "1.0.83", features = ["derive"] }
15 crossbeam-channel = "0.4"
16 log = "0.4.3"
17 lsp-types = { version = "0.67.0", features = ["proposed"] }
18 rustc-hash = "1.0"
19 parking_lot = "0.10.0"
20 jod-thread = "0.1.0"
21 ra_vfs = "0.5.0"
22 ra_syntax = { path = "../ra_syntax" }
23 ra_text_edit = { path = "../ra_text_edit" }
24 ra_ide = { path = "../ra_ide" }
25 lsp-server = "0.3.0"
26 ra_project_model = { path = "../ra_project_model" }
27 ra_prof = { path = "../ra_prof" }
28 ra_vfs_glob = { path = "../ra_vfs_glob" }
29 env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
30 ra_cargo_watch = { path = "../ra_cargo_watch" }
31
32 [dev-dependencies]
33 tempfile = "3"
34 test_utils = { path = "../test_utils" }
35
36 [features]
37 jemalloc = [ "ra_prof/jemalloc" ]