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/Cargo.nix | |
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/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 8076dd2c4ada..8e55db79c45f 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -200,9 +200,9 @@ rec { }; "anyhow" = rec { crateName = "anyhow"; - version = "1.0.66"; + version = "1.0.68"; edition = "2018"; - sha256 = "1xj3ahmwjlbiqsajhkaa0q6hqwb4l3l5rkfxa7jk1498r3fn2qi1"; + sha256 = "0qdb5x89jpngjrl40fpp8047xlydm38n8bz8iaml3lcds64zkcic"; authors = [ "David Tolnay <dtolnay@gmail.com>" ]; @@ -5028,9 +5028,9 @@ rec { }; "thiserror" = rec { crateName = "thiserror"; - version = "1.0.37"; + version = "1.0.38"; edition = "2018"; - sha256 = "0gky83x4i87gd87w3fknnp920wvk9yycp7dgkf5h3jg364vb7phh"; + sha256 = "1l7yh18iqcr2jnl6qjx3ywvhny98cvda3biwc334ap3xm65d373a"; authors = [ "David Tolnay <dtolnay@gmail.com>" ]; @@ -5044,9 +5044,9 @@ rec { }; "thiserror-impl" = rec { crateName = "thiserror-impl"; - version = "1.0.37"; + version = "1.0.38"; edition = "2018"; - sha256 = "1fydmpksd14x1mkc24zas01qjssz8q43sbn2ywl6n527dda1fbcq"; + sha256 = "0vzkcjqkzzgrwwby92xvnbp11a8d70b1gkybm0zx1r458spjgcqz"; procMacro = true; authors = [ "David Tolnay <dtolnay@gmail.com>" @@ -6163,6 +6163,10 @@ rec { else ./store; dependencies = [ { + name = "anyhow"; + packageId = "anyhow"; + } + { name = "blake3"; packageId = "blake3"; features = [ "rayon" "std" ]; @@ -6176,6 +6180,10 @@ rec { packageId = "prost"; } { + name = "thiserror"; + packageId = "thiserror"; + } + { name = "tonic"; packageId = "tonic"; } |