rust/crates/ra_ide_db/Cargo.toml

33 lines
736 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"]
2020-07-14 03:57:26 +02:00
license = "MIT OR Apache-2.0"
2020-02-06 12:43:56 +01:00
[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-03-04 12:14:48 +01:00
once_cell = "1.3.1"
2020-03-23 12:34:56 +01:00
either = "1.5.3"
2020-02-06 12:43:56 +01:00
stdx = { path = "../stdx" }
2020-08-12 18:26:51 +02:00
syntax = { path = "../syntax" }
2020-08-12 17:03:06 +02:00
text_edit = { path = "../text_edit" }
2020-08-13 16:25:38 +02:00
base_db = { path = "../base_db" }
2020-08-12 16:32:36 +02:00
profile = { path = "../profile" }
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" }