]> git.lizzy.rs Git - rust.git/blob - crates/ide-ssr/Cargo.toml
fix: float display impl
[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-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
24 [dev-dependencies]
25 test-utils = { path = "../test-utils" }
26 expect-test = "1.2.2"