aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-25 16:04:48 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-25 16:04:48 +0100
commit5932bd0bb5fcd066a9d16abcd1597b7097978085 (patch)
tree7b6ea86855fe34c3d45d14262c8cf94e315566e8 /crates/ra_analysis/Cargo.toml
parent2cb2074c4b7219b32993abdcc7084637c0123d49 (diff)
parent363adf07b7763cfe7e13fac0ee148361d51834e4 (diff)
Merge #162
162: Db everywhere r=matklad a=matklad This PR continues our switch to salsa. Now *all* state is handled by a single salsa database. Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_analysis/Cargo.toml')
-rw-r--r--crates/ra_analysis/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_analysis/Cargo.toml b/crates/ra_analysis/Cargo.toml
index 75a9dc844..5d7915fa5 100644
--- a/crates/ra_analysis/Cargo.toml
+++ b/crates/ra_analysis/Cargo.toml
@@ -5,12 +5,13 @@ version = "0.1.0"
5authors = ["Aleksey Kladov <[email protected]>"] 5authors = ["Aleksey Kladov <[email protected]>"]
6 6
7[dependencies] 7[dependencies]
8log = "0.4.5"
8relative-path = "0.4.0" 9relative-path = "0.4.0"
9rayon = "1.0.2" 10rayon = "1.0.2"
10fst = "0.3.1" 11fst = "0.3.1"
11ra_syntax = { path = "../ra_syntax" } 12ra_syntax = { path = "../ra_syntax" }
12ra_editor = { path = "../ra_editor" } 13ra_editor = { path = "../ra_editor" }
13salsa = "0.6.0" 14salsa = "0.6.2"
14rustc-hash = "1.0" 15rustc-hash = "1.0"
15 16
16[dev-dependencies] 17[dev-dependencies]