rust/crates/ra_ide_api/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2019-01-08 13:33:36 -06:00
[package]
edition = "2018"
name = "ra_ide_api"
version = "0.1.0"
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]
2019-07-20 12:04:34 -05:00
format-buf = "1.0.0"
2019-01-08 13:33:36 -06:00
itertools = "0.8.0"
2019-01-25 10:50:59 -06:00
join_to_string = "0.1.3"
2019-01-08 13:33:36 -06:00
log = "0.4.5"
rayon = "1.0.2"
fst = { version = "0.3.1", default-features = false }
2019-01-08 13:33:36 -06:00
rustc-hash = "1.0"
unicase = "2.2.0"
superslice = "1.0.0"
2019-07-04 14:16:06 -05:00
rand = { version = "0.7.0", features = ["small_rng"] }
2019-10-14 06:59:02 -05:00
once_cell = "1.2.0"
2019-01-28 06:52:21 -06:00
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" }
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" }
2019-01-14 07:27:08 -06:00
2019-10-29 08:19:08 -05:00
# ra_ide_api should depend only on the top-level `hir` package. if you need
# 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]
2019-10-24 09:35:22 -05:00
insta = "0.12.0"
2019-03-23 02:44:29 -05: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"]