2019-01-08 19:33:36 +00:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
2019-11-27 18:32:33 +00:00
|
|
|
name = "ra_ide"
|
2019-01-08 19:33:36 +00:00
|
|
|
version = "0.1.0"
|
2019-02-11 08:20:04 +00:00
|
|
|
authors = ["rust-analyzer developers"]
|
2019-01-08 19:33:36 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-09-20 17:38:16 +00:00
|
|
|
[features]
|
|
|
|
wasm = []
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
[dependencies]
|
2020-02-18 13:57:41 +00:00
|
|
|
either = "1.5.3"
|
|
|
|
indexmap = "1.3.2"
|
2020-03-23 23:22:46 +00:00
|
|
|
itertools = "0.9.0"
|
2020-02-18 13:57:41 +00:00
|
|
|
log = "0.4.8"
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
rand = { version = "0.7.3", features = ["small_rng"] }
|
2019-01-28 12:52:21 +00:00
|
|
|
|
2020-03-28 10:01:25 +00:00
|
|
|
stdx = { path = "../stdx" }
|
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
|
|
|
ra_db = { path = "../ra_db" }
|
2020-02-06 11:43:56 +00:00
|
|
|
ra_ide_db = { path = "../ra_ide_db" }
|
2019-09-29 23:38:16 +00:00
|
|
|
ra_cfg = { path = "../ra_cfg" }
|
2019-03-21 18:51:42 +00:00
|
|
|
ra_fmt = { path = "../ra_fmt" }
|
2019-04-14 20:28:10 +00:00
|
|
|
ra_prof = { path = "../ra_prof" }
|
2019-01-08 19:33:36 +00:00
|
|
|
test_utils = { path = "../test_utils" }
|
2019-02-03 18:26:35 +00:00
|
|
|
ra_assists = { path = "../ra_assists" }
|
2019-01-14 13:27:08 +00:00
|
|
|
|
2019-11-27 18:32:33 +00:00
|
|
|
# ra_ide should depend only on the top-level `hir` package. if you need
|
2019-10-29 13:19:08 +00:00
|
|
|
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
|
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
|
|
|
2019-01-14 13:27:08 +00:00
|
|
|
[dev-dependencies]
|
2020-04-14 17:57:02 +00:00
|
|
|
insta = "0.16.0"
|