]> git.lizzy.rs Git - rust.git/blob - crates/ide/Cargo.toml
added region folding
[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 lazy_static = "1.4.0"
35 regex = "1.4.3"
36 env_logger = { version = "0.8.1", default-features = false }
37
38 # ide should depend only on the top-level `hir` package. if you need
39 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
40 hir = { path = "../hir", version = "0.0.0" }
41
42 [dev-dependencies]
43 expect-test = "1.1"