]> git.lizzy.rs Git - rust.git/blob - crates/ra_ide_api/Cargo.toml
Updates
[rust.git] / crates / ra_ide_api / Cargo.toml
1 [package]
2 edition = "2018"
3 name = "ra_ide_api"
4 version = "0.1.0"
5 authors = ["rust-analyzer developers"]
6
7 [dependencies]
8 itertools = "0.8.0"
9 join_to_string = "0.1.3"
10 log = "0.4.5"
11 relative-path = "0.4.0"
12 rayon = "1.0.2"
13 fst = "0.3.1"
14 rustc-hash = "1.0"
15 parking_lot = "0.7.0"
16 unicase = "2.2.0"
17
18 jemallocator = { version = "0.1.9", optional = true }
19 jemalloc-ctl = { version = "0.2.0", optional = true }
20
21 ra_syntax = { path = "../ra_syntax" }
22 ra_ide_api_light = { path = "../ra_ide_api_light" }
23 ra_text_edit = { path = "../ra_text_edit" }
24 ra_db = { path = "../ra_db" }
25 hir = { path = "../ra_hir", package = "ra_hir" }
26 test_utils = { path = "../test_utils" }
27 ra_assists = { path = "../ra_assists" }
28
29 [dev-dependencies]
30 insta = "0.7.0"
31
32 [features]
33 jemalloc = [ "jemallocator", "jemalloc-ctl" ]