rust/crates/ra_ide_db/Cargo.toml

30 lines
689 B
TOML
Raw Normal View History

2020-02-06 12:43:56 +01:00
[package]
edition = "2018"
name = "ra_ide_db"
version = "0.1.0"
authors = ["rust-analyzer developers"]
[lib]
doctest = false
[features]
wasm = []
[dependencies]
2020-02-18 14:57:41 +01:00
log = "0.4.8"
rayon = "1.3.0"
2020-03-10 14:55:23 +01:00
fst = { version = "0.4", default-features = false }
2020-02-18 14:57:41 +01:00
rustc-hash = "1.1.0"
2020-02-06 12:43:56 +01:00
superslice = "1.0.0"
2020-03-04 12:14:48 +01:00
once_cell = "1.3.1"
2020-02-06 12:43:56 +01:00
ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" }
ra_db = { path = "../ra_db" }
ra_prof = { path = "../ra_prof" }
2020-03-04 11:38:55 +01:00
test_utils = { path = "../test_utils" }
2020-02-06 12:43:56 +01:00
# ra_ide 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" }