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