]> git.lizzy.rs Git - rust.git/blobdiff - crates/ide_db/Cargo.toml
internal: more reasonable grammar for blocks
[rust.git] / crates / ide_db / Cargo.toml
index e219c577a18b8e17e84f72a9a01b11077574c89d..cdaff0ce3977a7706f7b8b4f1cfbba60f229fd99 100644 (file)
@@ -3,7 +3,6 @@ name = "ide_db"
 version = "0.0.0"
 description = "TBD"
 license = "MIT OR Apache-2.0"
-authors = ["rust-analyzer developers"]
 edition = "2018"
 
 [lib]
@@ -11,13 +10,14 @@ doctest = false
 
 [dependencies]
 cov-mark = "2.0.0-pre.1"
-log = "0.4.8"
+tracing = "0.1"
 rayon = "1.5.0"
 fst = { version = "0.4", default-features = false }
 rustc-hash = "1.1.0"
 once_cell = "1.3.1"
 either = "1.6.1"
 itertools = "0.10.0"
+arrayvec = "0.7"
 
 stdx = { path = "../stdx", version = "0.0.0" }
 syntax = { path = "../syntax", version = "0.0.0" }
@@ -27,6 +27,7 @@ profile = { path = "../profile", version = "0.0.0" }
 # 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 = "../hir", version = "0.0.0" }
+limit = { path = "../limit", version = "0.0.0" }
 
 [dev-dependencies]
 test_utils = { path = "../test_utils" }