aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_assists/Cargo.toml')
-rw-r--r--crates/ra_assists/Cargo.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/ra_assists/Cargo.toml b/crates/ra_assists/Cargo.toml
new file mode 100644
index 000000000..20bc253e3
--- /dev/null
+++ b/crates/ra_assists/Cargo.toml
@@ -0,0 +1,17 @@
1[package]
2edition = "2018"
3name = "ra_assists"
4version = "0.1.0"
5authors = ["Aleksey Kladov <[email protected]>"]
6
7[dependencies]
8join_to_string = "0.1.3"
9
10ra_ide_api_light = { path = "../ra_ide_api_light" }
11ra_syntax = { path = "../ra_syntax" }
12ra_text_edit = { path = "../ra_text_edit" }
13ra_db = { path = "../ra_db" }
14hir = { path = "../ra_hir", package = "ra_hir" }
15
16[dev-dependencies]
17test_utils = { path = "../test_utils" }