]> git.lizzy.rs Git - rust.git/blob - crates/ide/Cargo.toml
Merge #8051
[rust.git] / crates / ide / Cargo.toml
1 [package]
2 name = "ide"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 authors = ["rust-analyzer developers"]
7 edition = "2018"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = { version = "1.1", features = ["thread-local"] }
14 either = "1.5.3"
15 indexmap = "1.4.0"
16 itertools = "0.10.0"
17 log = "0.4.8"
18 rustc-hash = "1.1.0"
19 oorandom = "11.1.2"
20 pulldown-cmark-to-cmark = "6.0.0"
21 pulldown-cmark = { version = "0.8.0", default-features = false }
22 url = "2.1.1"
23
24 stdx = { path = "../stdx", version = "0.0.0" }
25 syntax = { path = "../syntax", version = "0.0.0" }
26 text_edit = { path = "../text_edit", version = "0.0.0" }
27 ide_db = { path = "../ide_db", version = "0.0.0" }
28 cfg = { path = "../cfg", version = "0.0.0" }
29 profile = { path = "../profile", version = "0.0.0" }
30 ide_assists = { path = "../ide_assists", version = "0.0.0" }
31 ide_ssr = { path = "../ide_ssr", version = "0.0.0" }
32 ide_completion = { path = "../ide_completion", version = "0.0.0" }
33
34 # ide should depend only on the top-level `hir` package. if you need
35 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
36 hir = { path = "../hir", version = "0.0.0" }
37
38 [dev-dependencies]
39 test_utils = { path = "../test_utils" }
40 expect-test = "1.1"
41 cov-mark = "1.1.0"