2020-02-06 12:43:56 +01:00
|
|
|
[package]
|
2020-08-13 16:39:16 +02:00
|
|
|
name = "ide_db"
|
|
|
|
version = "0.0.0"
|
2020-07-14 10:57:26 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-13 16:39:16 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
edition = "2018"
|
2020-02-06 12:43:56 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
wasm = []
|
|
|
|
|
|
|
|
[dependencies]
|
2020-02-18 15:57:41 +02: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 15:57:41 +02:00
|
|
|
rustc-hash = "1.1.0"
|
2020-03-04 12:14:48 +01:00
|
|
|
once_cell = "1.3.1"
|
2020-03-23 13:34:56 +02:00
|
|
|
either = "1.5.3"
|
2020-02-06 12:43:56 +01:00
|
|
|
|
2020-07-23 12:59:18 +02: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-08-13 17:42:52 +02:00
|
|
|
# ide should depend only on the top-level `hir` package. if you need
|
2020-02-06 12:43:56 +01:00
|
|
|
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
2020-08-13 16:36:55 +02:00
|
|
|
hir = { path = "../hir" }
|