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/store | |
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/store')
-rw-r--r-- | tvix/store/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index bf04e9a1fbdf..b362a87ffb1d 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -42,6 +42,7 @@ url = "2.4.0" walkdir = "2.4.0" reqwest = { version = "0.11.22", features = ["rustls-tls-native-roots", "stream"], default-features = false } lru = "0.12.3" +parking_lot = "0.12.2" [dependencies.tonic-reflection] optional = true |