rust/crates/ra_ide_api/Cargo.toml

36 lines
910 B
TOML
Raw Normal View History

2019-01-08 22:33:36 +03:00
[package]
edition = "2018"
name = "ra_ide_api"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2019-01-08 22:33:36 +03:00
[dependencies]
itertools = "0.8.0"
2019-01-25 11:50:59 -05:00
join_to_string = "0.1.3"
2019-01-08 22:33:36 +03:00
log = "0.4.5"
relative-path = "0.4.0"
rayon = "1.0.2"
fst = { version = "0.3.1", default-features = false }
2019-01-08 22:33:36 +03:00
rustc-hash = "1.0"
unicase = "2.2.0"
superslice = "1.0.0"
2019-07-04 15:16:06 -04:00
rand = { version = "0.7.0", features = ["small_rng"] }
2019-01-28 15:52:21 +03:00
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" }
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
hir = { path = "../ra_hir", package = "ra_hir" }
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
[dev-dependencies]
2019-05-21 13:21:54 +03:00
insta = "0.8.1"
2019-03-23 08:44:29 +01: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"]