Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update Miden VM crates to the commit 1b4609e (next, Sep 5, 2024) #319

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ thiserror = { package = "miden-thiserror", version = "1.0" }
toml = { version = "0.8", features = ["preserve_order"] }
derive_more = "0.99"
indexmap = "2.2"
miden-assembly = { version = "0.10.3" }
miden-core = { version = "0.10.3" }
miden-parsing = "0.1"
miden-processor = { version = "0.10.3" }
miden-stdlib = { version = "0.10.3", features = ["with-debug-info"] }
#miden-assembly = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
#miden-core = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
#miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
#miden-stdlib = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
# miden-assembly = { version = "0.10.3" }
# miden-core = { version = "0.10.3" }
# miden-parsing = "0.1"
# miden-processor = { version = "0.10.3" }
# miden-stdlib = { version = "0.10.3", features = ["with-debug-info"] }
miden-assembly = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "1b4609e60e6409a7f0d66bd13cfdc8320ab2727c" }
miden-core = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "1b4609e60e6409a7f0d66bd13cfdc8320ab2727c" }
miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "1b4609e60e6409a7f0d66bd13cfdc8320ab2727c" }
miden-stdlib = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "1b4609e60e6409a7f0d66bd13cfdc8320ab2727c", features = ["with-debug-info"] }
midenc-codegen-masm = { version = "0.0.6", path = "codegen/masm" }
midenc-hir = { version = "0.0.6", path = "hir" }
midenc-hir-analysis = { version = "0.0.6", path = "hir-analysis" }
Expand Down
3 changes: 2 additions & 1 deletion midenc-debug/src/exec/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use std::{
cell::RefCell,
collections::{BTreeMap, BTreeSet, VecDeque},
rc::Rc,
sync::Arc,
};

use miden_assembly::Library as CompiledLibrary;
Expand Down Expand Up @@ -29,7 +30,7 @@ use crate::{debug::CallStack, felt::PopFromStack, TestFelt};
pub struct Executor {
stack: StackInputs,
advice: AdviceInputs,
libraries: Vec<MastForest>,
libraries: Vec<Arc<MastForest>>,
}
impl Executor {
/// Construct an executor with the given arguments on the operand stack
Expand Down
2 changes: 1 addition & 1 deletion midenc-debug/src/exec/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl DebuggerHost {
}

/// Load `forest` into the MAST store for this host
pub fn load_mast_forest(&mut self, forest: MastForest) {
pub fn load_mast_forest(&mut self, forest: Arc<MastForest>) {
self.store.insert(forest);
}
}
Expand Down
18 changes: 8 additions & 10 deletions tests/rust-apps-wasm/rust-sdk/account-test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading