rust/crates/ide_ssr/Cargo.toml

27 lines
685 B
TOML
Raw Normal View History

[package]
2021-02-23 00:44:58 +05:30
name = "ide_ssr"
2020-08-13 17:42:52 +02:00
version = "0.0.0"
description = "Structural search and replace of Rust code"
2020-08-13 16:45:10 +02:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-analyzer/rust-analyzer"
2021-10-21 17:49:28 +02:00
edition = "2021"
2021-12-16 01:49:48 +05:00
rust-version = "1.57"
[lib]
doctest = false
[dependencies]
2021-06-12 23:39:57 +03:00
cov-mark = "2.0.0-pre.1"
2020-08-13 16:45:10 +02:00
rustc-hash = "1.1.0"
2020-12-30 10:39:50 -05:00
itertools = "0.10.0"
2020-08-13 16:45:10 +02:00
2020-08-24 10:25:19 +02:00
text_edit = { path = "../text_edit", version = "0.0.0" }
parser = { path = "../parser", version = "0.0.0" }
2020-08-24 10:25:19 +02:00
syntax = { path = "../syntax", version = "0.0.0" }
ide_db = { path = "../ide_db", version = "0.0.0" }
hir = { path = "../hir", version = "0.0.0" }
2020-07-21 21:32:09 +10:00
[dev-dependencies]
2021-03-09 22:30:58 +03:00
test_utils = { path = "../test_utils" }
2021-10-09 17:17:16 +03:00
expect-test = "1.2.0-pre.1"