diff options
author | Florian Klink <flokli@flokli.de> | 2024-05-10T05·31+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-05-11T15·09+0000 |
commit | 84114cf02c7d742ff4bbfb1952734839d7e013eb (patch) | |
tree | 69a78482a47e99323baf23de50a9441e2e901ee4 /tvix/Cargo.nix | |
parent | 96b8b1a205e396c94344f9d70bade26d55fc98f4 (diff) |
refactor(tvix/castore/blobservice/memory): use parking_lot RwLock r/8113
This one doesn't require us to deal with poisoning, is upgradeable and the right thing to use when locking access to data, not IO resources. Change-Id: I78634953a73404500d28f51f1d93a87e215c8149 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11612 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 74794b834cee..32f0c8c8e97d 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -7112,7 +7112,7 @@ rec { } { name = "parking_lot"; - packageId = "parking_lot 0.12.1"; + packageId = "parking_lot 0.12.2"; } { name = "percent-encoding"; @@ -7683,11 +7683,11 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "parking_lot 0.12.1" = rec { + "parking_lot 0.12.2" = rec { crateName = "parking_lot"; - version = "0.12.1"; - edition = "2018"; - sha256 = "13r2xk7mnxfc5g0g6dkdxqdqad99j7s7z8zhzz4npw5r0g0v4hip"; + version = "0.12.2"; + edition = "2021"; + sha256 = "1ys2dzz6cysjmwyivwxczl1ljpcf5cj4qmhdj07d5bkc9z5g0jky"; authors = [ "Amanieu d'Antras <amanieu@gmail.com>" ]; @@ -13697,7 +13697,7 @@ rec { } { name = "parking_lot"; - packageId = "parking_lot 0.12.1"; + packageId = "parking_lot 0.12.2"; } { name = "petgraph"; @@ -14431,6 +14431,10 @@ rec { features = [ "rt-tokio" ]; } { + name = "parking_lot"; + packageId = "parking_lot 0.12.2"; + } + { name = "pin-project-lite"; packageId = "pin-project-lite"; } |