Skip to content

Commit

Permalink
fix: no_std compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Jan 25, 2024
1 parent 8ba7faa commit a7bf579
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ watch:
cargo watch -w miden-lib/asm -x build

test:
cargo test --release --features concurrent,testing
cargo test --release --features concurrent,testing
5 changes: 3 additions & 2 deletions objects/src/notes/note_id.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use super::{Digest, Felt, Hasher, Note, Word};
use crate::utils::serde::{
ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable,
use crate::utils::{
serde::{ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable},
string::String,
};

// NOTE ID
Expand Down
5 changes: 3 additions & 2 deletions objects/src/transaction/transaction_id.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use super::{Digest, ExecutedTransaction, Felt, Hasher, ProvenTransaction, Word, WORD_SIZE, ZERO};
use crate::utils::serde::{
ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable,
use crate::utils::{
serde::{ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable},
string::String,
};

// TRANSACTION ID
Expand Down

0 comments on commit a7bf579

Please sign in to comment.