Skip to content
Merged
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
2 changes: 1 addition & 1 deletion noir-projects/aztec-nr/aztec/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ type = "lib"

[dependencies]
protocol_types = { path = "../../noir-protocol-circuits/crates/types" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
poseidon = { tag = "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
10 changes: 5 additions & 5 deletions noir-projects/aztec-nr/aztec/src/lib.nr
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
mod context;
pub mod context;
mod publish_contract_instance;
mod hash;
mod history;
mod keys;
pub mod keys;
mod messaging;
mod note;
mod oracle;
pub mod note;
pub mod oracle;
mod state_vars;
mod capsules;
mod event;
pub mod messages;
pub use dep::protocol_types;
mod utils;
mod authwit;
mod macros;
pub mod macros;

mod test;
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
ecdsa_public_key_note = { path = "../../libs/ecdsa_public_key_note" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
ecdsa_public_key_note = { path = "../../libs/ecdsa_public_key_note" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
value_note = { path = "../../../../aztec-nr/value-note" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
keccak256 = { tag = "v0.1.0", git = "https://github.com/noir-lang/keccak256" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
poseidon = { tag= "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
compressed_string = { path = "../../../../aztec-nr/compressed-string" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
keccak256 = { tag = "v0.1.0", git = "https://github.com/noir-lang/keccak256" }
poseidon = { tag= "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type = "contract"
[dependencies]
aztec = { path = "../../../../aztec-nr/aztec" }
value_note = { path = "../../../../aztec-nr/value-note" }
sha256 = { tag = "v0.1.2", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ authors = [""]
compiler_version = ">=0.18.0"

[dependencies]
sha256 = { tag = "v0.1.3", git = "https://github.com/noir-lang/sha256" }
sha256 = { tag = "v0.1.4", git = "https://github.com/noir-lang/sha256" }
poseidon = { tag = "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
Loading