From 7163d3ad37105a97fdc7afdf4ad0da7579494fab Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 27 Dec 2022 18:10:46 +0100 Subject: feat(tvix/store): implement Directory::validate() Change-Id: I4c6ae79d705b8e19a3e2ed54812366e88935d7a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7650 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/Cargo.nix | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'tvix/Cargo.nix') 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 " ]; @@ -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 " ]; @@ -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 " @@ -6162,6 +6162,10 @@ rec { then lib.cleanSourceWith { filter = sourceFilter; src = ./store; } else ./store; dependencies = [ + { + name = "anyhow"; + packageId = "anyhow"; + } { name = "blake3"; packageId = "blake3"; @@ -6175,6 +6179,10 @@ rec { name = "prost"; packageId = "prost"; } + { + name = "thiserror"; + packageId = "thiserror"; + } { name = "tonic"; packageId = "tonic"; -- cgit 1.4.1