rust/crates/ra_ide_api/Cargo.toml

33 lines
766 B
TOML
Raw Normal View History

2019-01-08 20:33:36 +01:00
[package]
edition = "2018"
name = "ra_ide_api"
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
[dependencies]
itertools = "0.8.0"
2019-01-25 17:50:59 +01:00
join_to_string = "0.1.3"
2019-01-08 20:33:36 +01:00
log = "0.4.5"
relative-path = "0.4.0"
rayon = "1.0.2"
fst = "0.3.1"
rustc-hash = "1.0"
parking_lot = "0.7.0"
unicase = "2.2.0"
2019-01-28 13:52:21 +01:00
jemallocator = { version = "0.1.9", optional = true }
jemalloc-ctl = { version = "0.2.0", optional = true }
2019-01-08 20:33:36 +01:00
ra_syntax = { path = "../ra_syntax" }
ra_ide_api_light = { path = "../ra_ide_api_light" }
ra_text_edit = { path = "../ra_text_edit" }
ra_db = { path = "../ra_db" }
hir = { path = "../ra_hir", package = "ra_hir" }
test_utils = { path = "../test_utils" }
2019-01-14 14:27:08 +01:00
[dev-dependencies]
2019-01-23 12:48:57 +01:00
insta = "0.5.1"
2019-01-28 13:52:21 +01:00
[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]