]> git.lizzy.rs Git - rust.git/blob - crates/ide_ssr/Cargo.toml
Merge #10617
[rust.git] / crates / ide_ssr / Cargo.toml
1 [package]
2 name = "ide_ssr"
3 version = "0.0.0"
4 description = "Structural search and replace of Rust code"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-analyzer/rust-analyzer"
7 edition = "2021"
8 rust-version = "1.56"
9
10 [lib]
11 doctest = false
12
13 [dependencies]
14 cov-mark = "2.0.0-pre.1"
15 rustc-hash = "1.1.0"
16 itertools = "0.10.0"
17
18 text_edit = { path = "../text_edit", version = "0.0.0" }
19 syntax = { path = "../syntax", version = "0.0.0" }
20 ide_db = { path = "../ide_db", version = "0.0.0" }
21 hir = { path = "../hir", version = "0.0.0" }
22
23 [dev-dependencies]
24 test_utils = { path = "../test_utils" }
25 expect-test = "1.2.0-pre.1"