diff options
author | Aleksey Kladov <[email protected]> | 2020-10-14 11:37:59 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-14 11:40:48 +0100 |
commit | 41e2639f35df1f609b0a1ab677872149679a0371 (patch) | |
tree | df0f6080615422f63089d3731335f3069edb88e6 | |
parent | 0fb069c5b02072239891ce564feaa7d1890c6d6f (diff) |
:arrow_up: salsa
-rw-r--r-- | Cargo.lock | 10 | ||||
-rw-r--r-- | crates/base_db/Cargo.toml | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index b890b6e19..bcb4b2cc3 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1361,11 +1361,11 @@ checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" | |||
1361 | 1361 | ||
1362 | [[package]] | 1362 | [[package]] |
1363 | name = "salsa" | 1363 | name = "salsa" |
1364 | version = "0.15.2" | 1364 | version = "0.16.0" |
1365 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1366 | checksum = "9ab29056d4fb4048a5f0d169c9b6e5526160c9ec37aded5a6879c2c9c445a8e4" | 1366 | checksum = "d8fadca2ab5de17acf66d744f4888049ca8f1bb9b8a1ab8afd9d032cc959c5dc" |
1367 | dependencies = [ | 1367 | dependencies = [ |
1368 | "crossbeam-utils 0.7.2", | 1368 | "crossbeam-utils 0.8.0", |
1369 | "indexmap", | 1369 | "indexmap", |
1370 | "lock_api", | 1370 | "lock_api", |
1371 | "log", | 1371 | "log", |
@@ -1378,9 +1378,9 @@ dependencies = [ | |||
1378 | 1378 | ||
1379 | [[package]] | 1379 | [[package]] |
1380 | name = "salsa-macros" | 1380 | name = "salsa-macros" |
1381 | version = "0.15.2" | 1381 | version = "0.16.0" |
1382 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1383 | checksum = "a1c3aec007c63c4ed4cd7a018529fb0b5575c4562575fc6a40d6cd2ae0b792ef" | 1383 | checksum = "cd3904a4ba0a9d0211816177fd34b04c7095443f8cdacd11175064fe541c8fe2" |
1384 | dependencies = [ | 1384 | dependencies = [ |
1385 | "heck", | 1385 | "heck", |
1386 | "proc-macro2", | 1386 | "proc-macro2", |
diff --git a/crates/base_db/Cargo.toml b/crates/base_db/Cargo.toml index f7bfcb0d7..1724d2f85 100644 --- a/crates/base_db/Cargo.toml +++ b/crates/base_db/Cargo.toml | |||
@@ -10,7 +10,7 @@ edition = "2018" | |||
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [dependencies] | 12 | [dependencies] |
13 | salsa = "0.15.2" | 13 | salsa = "0.16.0" |
14 | rustc-hash = "1.1.0" | 14 | rustc-hash = "1.1.0" |
15 | 15 | ||
16 | syntax = { path = "../syntax", version = "0.0.0" } | 16 | syntax = { path = "../syntax", version = "0.0.0" } |