rust-analyzer/crates/ra_ide/Cargo.toml

50 lines
1.2 KiB
TOML
Raw Normal View History

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"
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]
either = "1.5"
2019-07-20 17:04:34 +00:00
format-buf = "1.0.0"
indexmap = "1.3.0"
2019-01-08 19:33:36 +00:00
itertools = "0.8.0"
2019-01-25 16:50:59 +00:00
join_to_string = "0.1.3"
2019-01-08 19:33:36 +00:00
log = "0.4.5"
rayon = "1.0.2"
fst = { version = "0.3.1", default-features = false }
2019-01-08 19:33:36 +00:00
rustc-hash = "1.0"
unicase = "2.2.0"
superslice = "1.0.0"
2019-07-04 19:16:06 +00:00
rand = { version = "0.7.0", features = ["small_rng"] }
2019-10-14 11:59:02 +00:00
once_cell = "1.2.0"
2019-01-28 12:52:21 +00:00
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" }
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-01-26 15:46:45 +00:00
insta = "0.13.0"
2019-03-23 07:44:29 +00:00
[dev-dependencies.proptest]
version = "0.9.0"
# Disable `fork` feature to allow compiling on webassembly
default-features = false
features = ["std", "bit-set", "break-dead-code"]