]> git.lizzy.rs Git - rust.git/blob - crates/ide_assists/Cargo.toml
Merge #11069
[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 = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 rustc-hash = "1.1.0"
15 itertools = "0.10.0"
16 either = "1.6.1"
17
18 stdx = { path = "../stdx", version = "0.0.0" }
19 parser = { path = "../parser", version = "0.0.0" }
20 syntax = { path = "../syntax", version = "0.0.0" }
21 text_edit = { path = "../text_edit", version = "0.0.0" }
22 profile = { path = "../profile", version = "0.0.0" }
23 ide_db = { path = "../ide_db", version = "0.0.0" }
24 hir = { path = "../hir", version = "0.0.0" }
25
26 [dev-dependencies]
27 test_utils = { path = "../test_utils" }
28 sourcegen = { path = "../sourcegen" }
29 expect-test = "1.2.0-pre.1"