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
8 changes: 7 additions & 1 deletion uint-note/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
[package]
# Unique name for the Noir project
name = "uint_note"
# Author information
authors = ["aztec-labs"]
compiler_version = ">=0.18.0"
# Compiler version constraint: Using a tilde (~) ensures better stability
# by preventing unwanted minor/major version upgrades.
compiler_version = "~0.18.0"
type = "lib"

[dependencies]
# Local dependency likely pointing to the main Aztec library within the same monorepo or workspace.
# Path dependencies are relative to the directory containing this Nargo.toml file.
aztec = { path = "../aztec" }