]> git.lizzy.rs Git - rust.git/blobdiff - crates/ide_db/Cargo.toml
Merge #11002
[rust.git] / crates / ide_db / Cargo.toml
index 1f855c6214d64b2b1b4a2ff5f9d938e768ced68e..ea20f5372c97bd2bb206e14eaf73c5b14d941cc9 100644 (file)
@@ -3,31 +3,36 @@ name = "ide_db"
 version = "0.0.0"
 description = "TBD"
 license = "MIT OR Apache-2.0"
-authors = ["rust-analyzer developers"]
-edition = "2018"
+edition = "2021"
+rust-version = "1.56"
 
 [lib]
 doctest = false
 
 [dependencies]
-cov-mark = "1.1"
-log = "0.4.8"
+cov-mark = "2.0.0-pre.1"
+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"
+indexmap = "1.7"
 
 stdx = { path = "../stdx", version = "0.0.0" }
 syntax = { path = "../syntax", version = "0.0.0" }
 text_edit = { path = "../text_edit", version = "0.0.0" }
 base_db = { path = "../base_db", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
-test_utils = { path = "../test_utils", 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]
-expect-test = "1.1"
+test_utils = { path = "../test_utils" }
+sourcegen = { path = "../sourcegen" }
+xshell = "0.1"
+expect-test = "1.2.0-pre.1"