diff options
author | Florian Klink <flokli@flokli.de> | 2022-12-27T17·10+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-12-28T10·58+0000 |
commit | 7163d3ad37105a97fdc7afdf4ad0da7579494fab (patch) | |
tree | e3ff096674fed257b4680be9300f4d2318aaed94 /tvix/store/Cargo.toml | |
parent | 0c7e545fd061e9c2429eda8a89ba9b9d1a1c5212 (diff) |
feat(tvix/store): implement Directory::validate() r/5520
Change-Id: I4c6ae79d705b8e19a3e2ed54812366e88935d7a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7650 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/Cargo.toml')
-rw-r--r-- | tvix/store/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index 66eac5206363..cf57723d2159 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -4,9 +4,11 @@ version = "0.1.0" edition = "2021" [dependencies] +anyhow = "1.0.68" blake3 = { version = "1.3.1", features = ["rayon", "std"] } lazy_static = "1.4.0" prost = "0.11.2" +thiserror = "1.0.38" tonic = "0.8.2" [build-dependencies] |