]> git.lizzy.rs Git - rust.git/blob - crates/ra_lsp_server/Cargo.toml
e29b688fdb280b3f1322edb56795fbbeaa37f045
[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.63.1", 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
31 [dev-dependencies]
32 tempfile = "3"
33 test_utils = { path = "../test_utils" }
34
35 [features]
36 jemalloc = [ "ra_prof/jemalloc" ]