Skip to content

Commit

Permalink
Swapped git to crates io, winter-maybe-async
Browse files Browse the repository at this point in the history
  • Loading branch information
phklive committed Jun 11, 2024
1 parent d07665c commit dd64839
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 26 deletions.
54 changes: 32 additions & 22 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions miden-tx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ std = [
"miden-verifier/std",
"vm-processor/std",
]
async = ["maybe-async-await/async"]
async = ["winter-maybe-async/async"]

[dependencies]
maybe-async-await = { git = "https://github.com/phklive/maybe-async-await.git" }
miden-lib = { path = "../miden-lib", version = "0.4", default-features = false }
miden-objects = { path = "../objects", version = "0.4", default-features = false }
miden-prover = { workspace = true }
miden-verifier = { workspace = true }
rand = { workspace = true }
winter-maybe-async = "0.10.0"
vm-processor = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion miden-tx/src/executor/data_store.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use maybe_async_await::maybe_async;
use miden_objects::{
accounts::AccountId, assembly::ModuleAst, notes::NoteId, transaction::TransactionInputs,
};
use winter_maybe_async::maybe_async;

use crate::DataStoreError;

Expand Down
2 changes: 1 addition & 1 deletion miden-tx/src/executor/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use alloc::{rc::Rc, vec::Vec};

use maybe_async_await::{maybe_async, maybe_await};
use miden_lib::transaction::{ToTransactionKernelInputs, TransactionKernel};
use miden_objects::{
assembly::ProgramAst,
Expand All @@ -9,6 +8,7 @@ use miden_objects::{
Felt, Word, ZERO,
};
use vm_processor::ExecutionOptions;
use winter_maybe_async::{maybe_async, maybe_await};

use super::{
AccountCode, AccountId, Digest, ExecutedTransaction, NoteId, NoteScript, PreparedTransaction,
Expand Down

0 comments on commit dd64839

Please sign in to comment.