]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-analyzer/crates/ide-ssr/Cargo.toml
New upstream version 1.65.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / 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-lang/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
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 stdx = { path = "../stdx", version = "0.0.0" }
24
25 [dev-dependencies]
26 test-utils = { path = "../test-utils" }
27 expect-test = "1.4.0"