]> git.lizzy.rs Git - rust.git/blob - crates/ide/Cargo.toml
8c49800d554e5242e57b7f4a5bea22f1618f9507
[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 either = "1.5.3"
14 indexmap = "1.4.0"
15 itertools = "0.10.0"
16 log = "0.4.8"
17 rustc-hash = "1.1.0"
18 oorandom = "11.1.2"
19 pulldown-cmark-to-cmark = "6.0.0"
20 pulldown-cmark = { version = "0.8.0", default-features = false }
21 url = "2.1.1"
22
23 stdx = { path = "../stdx", version = "0.0.0" }
24 syntax = { path = "../syntax", version = "0.0.0" }
25 text_edit = { path = "../text_edit", version = "0.0.0" }
26 ide_db = { path = "../ide_db", version = "0.0.0" }
27 cfg = { path = "../cfg", version = "0.0.0" }
28 profile = { path = "../profile", version = "0.0.0" }
29 test_utils = { path = "../test_utils", version = "0.0.0" }
30 assists = { path = "../assists", version = "0.0.0" }
31 ssr = { path = "../ssr", version = "0.0.0" }
32 completion = { path = "../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 expect-test = "1.1"