lib: Remove async-std dependency.

This commit is contained in:
parazyd
2023-08-22 18:28:38 +02:00
parent 4c94fa251c
commit a02e3475f6
27 changed files with 483 additions and 443 deletions

View File

@@ -273,8 +273,7 @@ impl Proof {
.unwrap();
// Now replace the "stuff" back again
for (old_circ, (circ, stuff)) in
circuits.iter().zip(ucircuits.into_iter().zip(other_stuff.into_iter()))
for (old_circ, (circ, stuff)) in circuits.iter().zip(ucircuits.into_iter().zip(other_stuff))
{
old_circ.replace(ZkCircuit(circ, stuff.0, stuff.1));
}