From d473fa962a1aed1bba391234236693c3917c8ce4 Mon Sep 17 00:00:00 2001 From: Tim Geoghegan Date: Mon, 11 Sep 2023 10:08:07 -0700 Subject: [PATCH] rebase cleanup --- Cargo.toml | 2 +- src/vdaf/prio3.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 771bd714a..8d1dc95df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ experimental = ["bitvec", "fiat-crypto", "fixed", "num-bigint", "num-rational", multithreaded = ["rayon"] prio2 = ["crypto-dependencies", "hmac", "sha2"] crypto-dependencies = ["aes", "ctr"] -test-util = ["dep:rand"] +test-util = ["rand"] [workspace] members = [".", "binaries"] diff --git a/src/vdaf/prio3.rs b/src/vdaf/prio3.rs index 153f0bfea..e00d283ad 100644 --- a/src/vdaf/prio3.rs +++ b/src/vdaf/prio3.rs @@ -970,6 +970,7 @@ impl ConstantTimeEq for Prio3PrepareS self.joint_rand_seed.as_ref(), other.joint_rand_seed.as_ref(), ) & self.measurement_share.ct_eq(&other.measurement_share) + } } impl Debug for Prio3PrepareState {