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