]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/ide-assists/Cargo.toml
Auto merge of #103137 - dtolnay:readdir, r=Mark-Simulacrum
[rust.git] / src / tools / rust-analyzer / 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
15 itertools = "0.10.5"
16 either = "1.7.0"
17
18 stdx = { path = "../stdx", version = "0.0.0" }
19 syntax = { path = "../syntax", version = "0.0.0" }
20 text-edit = { path = "../text-edit", version = "0.0.0" }
21 profile = { path = "../profile", version = "0.0.0" }
22 ide-db = { path = "../ide-db", version = "0.0.0" }
23 hir = { path = "../hir", version = "0.0.0" }
24
25 [dev-dependencies]
26 test-utils = { path = "../test-utils" }
27 sourcegen = { path = "../sourcegen" }
28 expect-test = "1.4.0"
29
30 [features]
31 in-rust-tree = []