From c72e92501e9437dea36e5609941d0282e30584c9 Mon Sep 17 00:00:00 2001 From: sansns Date: Fri, 21 Nov 2025 16:57:12 +0300 Subject: [PATCH] Update Nargo.toml --- uint-note/Nargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/uint-note/Nargo.toml b/uint-note/Nargo.toml index b04f25f7..6b00e116 100644 --- a/uint-note/Nargo.toml +++ b/uint-note/Nargo.toml @@ -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" }