diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2022-10-15 12:54:25 +0300 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2022-10-15 12:54:25 +0300 |
| commit | 3a5f6a705ef47456361c237d8ba1140a8e4ea27a (patch) | |
| tree | 770fe625afa7ce2af3a9f7186dba05f1ce3721ac | |
| parent | 6e74a229181307b69af2272e356692c3b9b051b0 (diff) | |
| download | rust-3a5f6a705ef47456361c237d8ba1140a8e4ea27a.tar.gz rust-3a5f6a705ef47456361c237d8ba1140a8e4ea27a.zip | |
Bump dashmap
| -rw-r--r-- | Cargo.lock | 9 | ||||
| -rw-r--r-- | crates/hir-def/Cargo.toml | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 6b03adc4e58..7deb70e6c4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,13 +294,14 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.3.4" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f" +checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" dependencies = [ "cfg-if", "hashbrown", "lock_api", + "once_cell", "parking_lot_core 0.9.3", ] @@ -844,9 +845,9 @@ version = "0.0.0" [[package]] name = "lock_api" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" dependencies = [ "autocfg", "scopeguard", diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml index 73a40565795..4ad8e75970b 100644 --- a/crates/hir-def/Cargo.toml +++ b/crates/hir-def/Cargo.toml @@ -15,7 +15,7 @@ arrayvec = "0.7.2" bitflags = "1.3.2" cov-mark = "2.0.0-pre.1" # We need to freeze the version of the crate, as the raw-api feature is considered unstable -dashmap = { version = "=5.3.4", features = ["raw-api"] } +dashmap = { version = "=5.4.0", features = ["raw-api"] } drop_bomb = "0.1.5" either = "1.7.0" fst = { version = "0.4.7", default-features = false } |
