2020-06-17 16:53:51 +10:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "ide-ssr"
|
2020-08-13 17:42:52 +02:00
|
|
|
version = "0.0.0"
|
2020-06-17 16:53:51 +10:00
|
|
|
description = "Structural search and replace of Rust code"
|
2020-08-13 16:45:10 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-04-13 16:54:24 -07:00
|
|
|
repository = "https://github.com/rust-lang/rust-analyzer"
|
2021-10-21 17:49:28 +02:00
|
|
|
edition = "2021"
|
2021-12-16 01:49:48 +05:00
|
|
|
rust-version = "1.57"
|
2020-06-17 16:53:51 +10:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-12 23:39:57 +03:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2022-04-25 18:51:59 +02:00
|
|
|
|
2022-03-22 17:36:41 +01:00
|
|
|
itertools = "0.10.3"
|
2020-08-13 16:45:10 +02:00
|
|
|
|
2022-04-29 14:29:24 +00:00
|
|
|
text-edit = { path = "../text-edit", version = "0.0.0" }
|
2021-12-18 17:20:38 +03:00
|
|
|
parser = { path = "../parser", version = "0.0.0" }
|
2020-08-24 10:25:19 +02:00
|
|
|
syntax = { path = "../syntax", version = "0.0.0" }
|
2022-04-29 14:29:24 +00:00
|
|
|
ide-db = { path = "../ide-db", version = "0.0.0" }
|
2020-08-24 10:25:19 +02:00
|
|
|
hir = { path = "../hir", version = "0.0.0" }
|
2020-07-21 21:32:09 +10:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-04-29 14:29:24 +00:00
|
|
|
test-utils = { path = "../test-utils" }
|
2022-06-10 16:30:09 +02:00
|
|
|
expect-test = "1.3.0"
|