diff options
Diffstat (limited to 'crates/ide_db/Cargo.toml')
-rw-r--r-- | crates/ide_db/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml index d4612a75e..1f7a90d20 100644 --- a/crates/ide_db/Cargo.toml +++ b/crates/ide_db/Cargo.toml | |||
@@ -10,6 +10,7 @@ edition = "2018" | |||
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [dependencies] | 12 | [dependencies] |
13 | cov-mark = "1.1" | ||
13 | log = "0.4.8" | 14 | log = "0.4.8" |
14 | rayon = "1.5.0" | 15 | rayon = "1.5.0" |
15 | fst = { version = "0.4", default-features = false } | 16 | fst = { version = "0.4", default-features = false } |
@@ -23,10 +24,10 @@ syntax = { path = "../syntax", version = "0.0.0" } | |||
23 | text_edit = { path = "../text_edit", version = "0.0.0" } | 24 | text_edit = { path = "../text_edit", version = "0.0.0" } |
24 | base_db = { path = "../base_db", version = "0.0.0" } | 25 | base_db = { path = "../base_db", version = "0.0.0" } |
25 | profile = { path = "../profile", version = "0.0.0" } | 26 | profile = { path = "../profile", version = "0.0.0" } |
26 | test_utils = { path = "../test_utils", version = "0.0.0" } | ||
27 | # ide should depend only on the top-level `hir` package. if you need | 27 | # ide should depend only on the top-level `hir` package. if you need |
28 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. | 28 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. |
29 | hir = { path = "../hir", version = "0.0.0" } | 29 | hir = { path = "../hir", version = "0.0.0" } |
30 | 30 | ||
31 | [dev-dependencies] | 31 | [dev-dependencies] |
32 | test_utils = { path = "../test_utils" } | ||
32 | expect-test = "1.1" | 33 | expect-test = "1.1" |