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"]
|
2020-07-14 01:57:26 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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"
|
2020-07-29 17:49:10 +00:00
|
|
|
oorandom = "11.1.2"
|
2019-01-28 12:52:21 +00:00
|
|
|
|
2020-03-28 10:01:25 +00:00
|
|
|
stdx = { path = "../stdx" }
|
|
|
|
|
2020-08-12 16:26:51 +00:00
|
|
|
syntax = { path = "../syntax" }
|
2020-08-12 15:03:06 +00:00
|
|
|
text_edit = { path = "../text_edit" }
|
2020-08-13 14:25:38 +00:00
|
|
|
base_db = { path = "../base_db" }
|
2020-08-13 14:39:16 +00:00
|
|
|
ide_db = { path = "../ide_db" }
|
2020-08-13 08:19:09 +00:00
|
|
|
cfg = { path = "../cfg" }
|
2020-08-12 14:32:36 +00:00
|
|
|
profile = { path = "../profile" }
|
2019-01-08 19:33:36 +00:00
|
|
|
test_utils = { path = "../test_utils" }
|
2020-08-13 15:33:38 +00:00
|
|
|
assists = { path = "../assists" }
|
2020-08-13 14:45:10 +00:00
|
|
|
ssr = { path = "../ssr" }
|
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`.
|
2020-08-13 14:36:55 +00:00
|
|
|
hir = { path = "../hir" }
|
2019-10-29 13:19:08 +00:00
|
|
|
|
2019-01-14 13:27:08 +00:00
|
|
|
[dev-dependencies]
|
2020-07-09 08:59:41 +00:00
|
|
|
expect = { path = "../expect" }
|