2019-01-08 13:33:36 -06:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_ide_api"
|
|
|
|
version = "0.1.0"
|
2019-02-11 02:20:04 -06:00
|
|
|
authors = ["rust-analyzer developers"]
|
2019-01-08 13:33:36 -06:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
itertools = "0.8.0"
|
2019-01-25 10:50:59 -06:00
|
|
|
join_to_string = "0.1.3"
|
2019-01-08 13:33:36 -06:00
|
|
|
log = "0.4.5"
|
|
|
|
relative-path = "0.4.0"
|
|
|
|
rayon = "1.0.2"
|
2019-03-22 15:22:03 -05:00
|
|
|
fst = { version = "0.3.1", default-features = false }
|
2019-01-08 13:33:36 -06:00
|
|
|
rustc-hash = "1.0"
|
|
|
|
unicase = "2.2.0"
|
2019-03-22 07:24:43 -05:00
|
|
|
superslice = "1.0.0"
|
2019-05-25 09:23:58 -05:00
|
|
|
rand = "0.6.5"
|
2019-01-28 06:52:21 -06:00
|
|
|
|
|
|
|
jemallocator = { version = "0.1.9", optional = true }
|
|
|
|
jemalloc-ctl = { version = "0.2.0", optional = true }
|
2019-01-08 13:33:36 -06:00
|
|
|
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
|
|
|
ra_db = { path = "../ra_db" }
|
2019-03-21 13:51:42 -05:00
|
|
|
ra_fmt = { path = "../ra_fmt" }
|
2019-04-14 15:28:10 -05:00
|
|
|
ra_prof = { path = "../ra_prof" }
|
2019-01-08 13:33:36 -06:00
|
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
|
|
test_utils = { path = "../test_utils" }
|
2019-02-03 12:26:35 -06:00
|
|
|
ra_assists = { path = "../ra_assists" }
|
2019-01-14 07:27:08 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-05-21 05:21:54 -05:00
|
|
|
insta = "0.8.1"
|
2019-03-23 02:44:29 -05:00
|
|
|
|
|
|
|
[dev-dependencies.proptest]
|
|
|
|
version = "0.9.0"
|
|
|
|
# Disable `fork` feature to allow compiling on webassembly
|
|
|
|
default-features = false
|
|
|
|
features = ["std", "bit-set", "break-dead-code"]
|
2019-01-28 06:52:21 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
|