Skip to content

Commit b78bd31

Browse files
committed
bump again
1 parent 3c15c2a commit b78bd31

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ tlsn-tls-core = { path = "crates/tls/core" }
6969
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "6168663" }
7070
tlsn-verifier = { path = "crates/verifier" }
7171

72-
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
73-
mpz-memory-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
74-
mpz-common = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
75-
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
76-
mpz-vm-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
77-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
78-
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
79-
mpz-ole = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
80-
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
81-
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
82-
mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
83-
mpz-zk = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
84-
mpz-hash = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "75928f7" }
72+
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
73+
mpz-memory-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
74+
mpz-common = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
75+
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
76+
mpz-vm-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
77+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
78+
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
79+
mpz-ole = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
80+
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
81+
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
82+
mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
83+
mpz-zk = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
84+
mpz-hash = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "abd02e6" }
8585

8686
rangeset = { version = "0.2" }
8787
serio = { version = "0.2" }

crates/components/deap/src/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,10 @@ where
184184
{
185185
type Error = VmError;
186186

187+
fn is_alloc_raw(&self, slice: Slice) -> bool {
188+
self.mpc.try_lock().unwrap().is_alloc_raw(slice)
189+
}
190+
187191
fn alloc_raw(&mut self, size: usize) -> Result<Slice, VmError> {
188192
if self.desync.load(Ordering::Relaxed) {
189193
return Err(VmError::memory(
@@ -195,6 +199,10 @@ where
195199
self.mpc.try_lock().unwrap().alloc_raw(size)
196200
}
197201

202+
fn is_assigned_raw(&self, slice: Slice) -> bool {
203+
self.mpc.try_lock().unwrap().is_assigned_raw(slice)
204+
}
205+
198206
fn assign_raw(&mut self, slice: Slice, data: BitVec) -> Result<(), VmError> {
199207
self.zk
200208
.try_lock()
@@ -203,6 +211,10 @@ where
203211
self.mpc.try_lock().unwrap().assign_raw(slice, data)
204212
}
205213

214+
fn is_committed_raw(&self, slice: Slice) -> bool {
215+
self.mpc.try_lock().unwrap().is_committed_raw(slice)
216+
}
217+
206218
fn commit_raw(&mut self, slice: Slice) -> Result<(), VmError> {
207219
// Follower's private inputs are not committed in the ZK VM until finalization.
208220
let input_minus_follower = slice.to_range().difference(&self.follower_inputs);

0 commit comments

Comments
 (0)