Skip to content
Open
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
10 changes: 9 additions & 1 deletion uint-note/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# 📦 Package Metadata
# This section defines the core properties of the Noir project.
[package]
name = "uint_note"
authors = ["aztec-labs"]
compiler_version = ">=0.18.0"
# Compiler version constraint. Using a more specific range (0.18.x series)
# helps prevent unexpected build failures from future breaking changes in newer minor versions.
compiler_version = ">=0.18.0, <0.19.0"
type = "lib"

# 🔗 Dependencies
# This section specifies external modules or libraries required by this project.
[dependencies]
# Dependencies are often specified with a relative path in monorepos.
# This assumes the main 'aztec' library is located one directory up.
aztec = { path = "../aztec" }