Skip to content

Commit 94be11b

Browse files
committed
Update vm commit
1 parent d5ec412 commit 94be11b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ edition = "2024"
55

66
[dependencies]
77
dap = { git = "https://github.com/software-mansion-labs/dap-rs", rev = "4440a6f" }
8-
cairo-vm = { git = "https://github.com/software-mansion-labs/cairo-vm", rev = "aa83d6e" }
8+
cairo-vm = { git = "https://github.com/software-mansion-labs/cairo-vm", rev = "e8183f4" }
99
tracing = "0.1"
1010
anyhow = "1.0"

src/debugger/vm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::CairoDebugger;
66

77
impl RunnerPreStepHook for CairoDebugger {
88
#[tracing::instrument(skip(self, vm), err)]
9-
fn execute(&self, vm: &VirtualMachine) -> Result<(), VirtualMachineError> {
9+
fn execute(&mut self, vm: &VirtualMachine) -> Result<(), VirtualMachineError> {
1010
self.sync_with_vm(vm).map_err(VirtualMachineError::Other)
1111
}
1212
}

0 commit comments

Comments
 (0)