rust/crates/ra_ide/Cargo.toml

39 lines
896 B
TOML
Raw Normal View History

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