]> git.lizzy.rs Git - rust.git/blob - crates/ide_assists/Cargo.toml
Merge #9417
[rust.git] / crates / ide_assists / Cargo.toml
1 [package]
2 name = "ide_assists"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 cov-mark = "2.0.0-pre.1"
13 rustc-hash = "1.1.0"
14 itertools = "0.10.0"
15 either = "1.6.1"
16
17 stdx = { path = "../stdx", version = "0.0.0" }
18 syntax = { path = "../syntax", version = "0.0.0" }
19 text_edit = { path = "../text_edit", version = "0.0.0" }
20 profile = { path = "../profile", version = "0.0.0" }
21 ide_db = { path = "../ide_db", version = "0.0.0" }
22 hir = { path = "../hir", version = "0.0.0" }
23
24 [dev-dependencies]
25 test_utils = { path = "../test_utils" }
26 sourcegen = { path = "../sourcegen" }
27 expect-test = "1.1"