-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Sync from noir (AztecProtocol/aztec-packages#5999)
Automated pull of development from the [noir](https://github.com/noir-lang/noir) programming language, a dependency of Aztec. BEGIN_COMMIT_OVERRIDE fix: fix curve parameters for bigints (#4900) chore: bump `rustls` to v0.21.11 (#4895) fix: Update noir-gates-diff commit to use master reference report (#4891) fix: Reset the noir-gates-diff report on master (#4878) fix(experimental): Skip over comptime functions in scan pass (#4893) chore(experimental): Improve variable not defined error message in comptime interpreter (#4889) chore(experimental): Add scan pass and `into_expression` for comptime interpreter (#4884) END_COMMIT_OVERRIDE --------- Co-authored-by: Tom French <[email protected]>
- Loading branch information
1 parent
0f9ae0a
commit 9aa3922
Showing
163 changed files
with
3,839 additions
and
1,253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
beab8c93857536e07fa37994213fc664a5864013 | ||
2e64428af9525bd8c390931061505f7b48d729a4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ version = "0.27.0" | |
# x-release-please-end | ||
authors = ["The Noir Team <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
rust-version = "1.74.1" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/noir-lang/noir/" | ||
|
||
|
@@ -132,6 +132,7 @@ tempfile = "3.6.0" | |
jsonrpc = { version = "0.16.0", features = ["minreq_http"] } | ||
flate2 = "1.0.24" | ||
|
||
im = { version = "15.1", features = ["serde"] } | ||
tracing = "0.1.40" | ||
tracing-web = "0.1.3" | ||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } | ||
|
Oops, something went wrong.