diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-22 12:50:34 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-22 12:50:34 +0100 |
commit | d144d69d2eded43a59c8edb59419b1b9e85c10a5 (patch) | |
tree | 0d52bdbb15723d25b7d3fff9ad25274c72e43434 /crates/ra_ssr/Cargo.toml | |
parent | 19701b39ac232b023ff9ab077a33c743df96d178 (diff) | |
parent | 662ab2ecc8e29eb5995b3c162fac869838bea9a2 (diff) |
Merge #4921
4921: Allow SSR to match type references, items, paths and patterns r=davidlattimore a=davidlattimore
Part of #3186
Co-authored-by: David Lattimore <[email protected]>
Diffstat (limited to 'crates/ra_ssr/Cargo.toml')
-rw-r--r-- | crates/ra_ssr/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/crates/ra_ssr/Cargo.toml b/crates/ra_ssr/Cargo.toml new file mode 100644 index 000000000..3c2f15a83 --- /dev/null +++ b/crates/ra_ssr/Cargo.toml | |||
@@ -0,0 +1,19 @@ | |||
1 | [package] | ||
2 | edition = "2018" | ||
3 | name = "ra_ssr" | ||
4 | version = "0.1.0" | ||
5 | authors = ["rust-analyzer developers"] | ||
6 | license = "MIT OR Apache-2.0" | ||
7 | description = "Structural search and replace of Rust code" | ||
8 | repository = "https://github.com/rust-analyzer/rust-analyzer" | ||
9 | |||
10 | [lib] | ||
11 | doctest = false | ||
12 | |||
13 | [dependencies] | ||
14 | ra_text_edit = { path = "../ra_text_edit" } | ||
15 | ra_syntax = { path = "../ra_syntax" } | ||
16 | ra_db = { path = "../ra_db" } | ||
17 | ra_ide_db = { path = "../ra_ide_db" } | ||
18 | hir = { path = "../ra_hir", package = "ra_hir" } | ||
19 | rustc-hash = "1.1.0" | ||