aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/Cargo.toml')
-rw-r--r--crates/ra_ide/Cargo.toml40
1 files changed, 0 insertions, 40 deletions
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml
deleted file mode 100644
index f4181c4eb..000000000
--- a/crates/ra_ide/Cargo.toml
+++ /dev/null
@@ -1,40 +0,0 @@
1[package]
2edition = "2018"
3name = "ra_ide"
4version = "0.1.0"
5authors = ["rust-analyzer developers"]
6license = "MIT OR Apache-2.0"
7
8[lib]
9doctest = false
10
11[features]
12wasm = []
13
14[dependencies]
15either = "1.5.3"
16indexmap = "1.3.2"
17itertools = "0.9.0"
18log = "0.4.8"
19rustc-hash = "1.1.0"
20oorandom = "11.1.2"
21
22stdx = { path = "../stdx" }
23
24ra_syntax = { path = "../ra_syntax" }
25ra_text_edit = { path = "../ra_text_edit" }
26ra_db = { path = "../ra_db" }
27ra_ide_db = { path = "../ra_ide_db" }
28ra_cfg = { path = "../ra_cfg" }
29ra_fmt = { path = "../ra_fmt" }
30ra_prof = { path = "../ra_prof" }
31test_utils = { path = "../test_utils" }
32ra_assists = { path = "../ra_assists" }
33ra_ssr = { path = "../ra_ssr" }
34
35# ra_ide should depend only on the top-level `hir` package. if you need
36# something from some `hir_xxx` subpackage, reexport the API via `hir`.
37hir = { path = "../ra_hir", package = "ra_hir" }
38
39[dev-dependencies]
40expect = { path = "../expect" }