]> git.lizzy.rs Git - rust.git/blob - crates/ide/Cargo.toml
fix: move dir on rename mod
[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 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 crossbeam-channel = "0.5.4"
15 either = "1.6.1"
16 itertools = "0.10.3"
17 tracing = "0.1.32"
18 rustc-hash = "1.1.0"
19 oorandom = "11.1.3"
20 pulldown-cmark-to-cmark = "10.0.1"
21 pulldown-cmark = { version = "0.9.1", default-features = false }
22 url = "2.2.2"
23 dot = "0.1.4"
24
25 stdx = { path = "../stdx", version = "0.0.0" }
26 syntax = { path = "../syntax", version = "0.0.0" }
27 text_edit = { path = "../text_edit", version = "0.0.0" }
28 ide_db = { path = "../ide_db", version = "0.0.0" }
29 cfg = { path = "../cfg", version = "0.0.0" }
30 profile = { path = "../profile", version = "0.0.0" }
31 ide_assists = { path = "../ide_assists", version = "0.0.0" }
32 ide_diagnostics = { path = "../ide_diagnostics", version = "0.0.0" }
33 ide_ssr = { path = "../ide_ssr", version = "0.0.0" }
34 ide_completion = { path = "../ide_completion", version = "0.0.0" }
35
36 # ide should depend only on the top-level `hir` package. if you need
37 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
38 hir = { path = "../hir", version = "0.0.0" }
39
40 [dev-dependencies]
41 test_utils = { path = "../test_utils" }
42 expect-test = "1.2.2"