From bf10a5c80b6564203a3cfe3039eee321dab625fc Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Mon, 6 Jan 2025 14:07:20 -0300 Subject: [PATCH] chore: update noir-bignum to v0.5.0 (#11066) This should fix a few errors that Noir will start reporting soon unless we update to this newer version. See https://github.com/noir-lang/noir/pull/6895 and https://github.com/noir-lang/noir/pull/6645 --- noir-projects/noir-protocol-circuits/crates/blob/Nargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noir-projects/noir-protocol-circuits/crates/blob/Nargo.toml b/noir-projects/noir-protocol-circuits/crates/blob/Nargo.toml index da49758490e..45b10bfc1ea 100644 --- a/noir-projects/noir-protocol-circuits/crates/blob/Nargo.toml +++ b/noir-projects/noir-protocol-circuits/crates/blob/Nargo.toml @@ -5,5 +5,5 @@ authors = [""] compiler_version = ">=0.30.0" [dependencies] -bigint = {tag = "v0.4.2", git = "https://github.com/noir-lang/noir-bignum" } +bigint = { tag = "v0.5.0", git = "https://github.com/noir-lang/noir-bignum" } types = { path = "../types" }