diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-11-26 13:26:23 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-26 13:26:23 +0000 |
commit | 4d753fa6f514ea1105c25ace91201c5324ee0b92 (patch) | |
tree | ff82cccf8b93b5d97f08d2d759d92164c90e6f02 | |
parent | 4822d26540a2eb13505604f2285198ff8fb69fbc (diff) | |
parent | b81548c73a134cd63aefb9ceb20edb399bd3a16c (diff) |
Merge #2412
2412: Fix stale crates that snuck in r=kjeremy a=kjeremy
Co-authored-by: Jeremy Kolb <[email protected]>
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | crates/ra_hir_ty/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5c87cf8e5..1c6161504 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1048,7 +1048,7 @@ dependencies = [ | |||
1048 | "insta 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1048 | "insta 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1049 | "lalrpop-intern 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1049 | "lalrpop-intern 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1050 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1050 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1051 | "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1051 | "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1052 | "ra_arena 0.1.0", | 1052 | "ra_arena 0.1.0", |
1053 | "ra_db 0.1.0", | 1053 | "ra_db 0.1.0", |
1054 | "ra_hir_def 0.1.0", | 1054 | "ra_hir_def 0.1.0", |
diff --git a/crates/ra_hir_ty/Cargo.toml b/crates/ra_hir_ty/Cargo.toml index 70216ab24..027b50865 100644 --- a/crates/ra_hir_ty/Cargo.toml +++ b/crates/ra_hir_ty/Cargo.toml | |||
@@ -10,7 +10,7 @@ doctest = false | |||
10 | [dependencies] | 10 | [dependencies] |
11 | log = "0.4.5" | 11 | log = "0.4.5" |
12 | rustc-hash = "1.0" | 12 | rustc-hash = "1.0" |
13 | parking_lot = "0.9.0" | 13 | parking_lot = "0.10.0" |
14 | ena = "0.13" | 14 | ena = "0.13" |
15 | 15 | ||
16 | ra_syntax = { path = "../ra_syntax" } | 16 | ra_syntax = { path = "../ra_syntax" } |