]> git.lizzy.rs Git - rust.git/blob - crates/ide_ssr/Cargo.toml
minor: Bump dependencies
[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.57"
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.3"
17
18 text_edit = { path = "../text_edit", version = "0.0.0" }
19 parser = { path = "../parser", version = "0.0.0" }
20 syntax = { path = "../syntax", 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 expect-test = "1.2.2"