-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated pull of development from the [noir](https://github.com/noir-lang/noir) programming language, a dependency of Aztec. BEGIN_COMMIT_OVERRIDE chore!: bump rust edition to 2024 (noir-lang/noir#7533) chore: revert bump of base64ct to `v1.6.0` after `v1.7.0` yanked (noir-lang/noir#7541) feat(performance): Avoid extra Brillig array offsetting for constant indices (noir-lang/noir#7522) feat: test error spans and messages (noir-lang/noir#7526) chore: bump wasm-bindgen (noir-lang/noir#7535) chore: parallelize `test_transform_program_is_idempotent` (noir-lang/noir#7539) chore(cli): Use `noir_artifact_cli::fs` to read artifacts (noir-lang/noir#7391) fix(experimental): Replace most remaining match panics with errors (noir-lang/noir#7536) chore: bump external pinned commits (noir-lang/noir#7537) END_COMMIT_OVERRIDE --------- Co-authored-by: Tom French <[email protected]> Co-authored-by: guipublic <[email protected]> Co-authored-by: Tom French <[email protected]> Co-authored-by: guipublic <[email protected]>
- Loading branch information
1 parent
ce24b7b
commit 1dc6641
Showing
103 changed files
with
1,911 additions
and
2,692 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 @@ | ||
42b4ba3fa2f1dfdb92f197bfbe25884078256ae2 | ||
826b18a10630471c19c25ab745f9bfe045813e69 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "avm-transpiler" | ||
version = "0.1.0" | ||
authors = ["The Aztec Team <[email protected]>"] | ||
edition = "2021" | ||
edition = "2024" | ||
license = "MIT OR Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ cd $(dirname "$0") | |
./cargo-binstall-install.sh | ||
|
||
# Install wasm-bindgen-cli. | ||
if [ "$(wasm-bindgen --version &> /dev/null | cut -d' ' -f2)" != "0.2.86" ]; then | ||
if [ "$(wasm-bindgen --version &> /dev/null | cut -d' ' -f2)" != "0.2.100" ]; then | ||
echo "Building wasm-bindgen..." | ||
cargo binstall [email protected].86 --force --no-confirm | ||
cargo binstall [email protected].100 --force --no-confirm | ||
fi | ||
|
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 |
---|---|---|
|
@@ -71,7 +71,7 @@ jobs: | |
- name: Install wasm-bindgen-cli | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected].86 | ||
tool: [email protected].100 | ||
|
||
- name: Install wasm-opt | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -22,12 +22,12 @@ jobs: | |
- name: Install wasm-bindgen-cli | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected].86 | ||
tool: [email protected].100 | ||
|
||
- name: Install wasm-opt | ||
run: | | ||
npm i wasm-opt -g | ||
- name: Query active docs versions | ||
run: yarn workspace docs version::stables | ||
|
||
|
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 |
---|---|---|
|
@@ -47,10 +47,10 @@ jobs: | |
node-version: 18.19.0 | ||
cache: 'yarn' | ||
cache-dependency-path: 'yarn.lock' | ||
|
||
- name: Update yarn.lock | ||
run: yarn | ||
|
||
- name: Configure git | ||
run: | | ||
git config user.name noirwhal | ||
|
@@ -61,13 +61,13 @@ jobs: | |
git add . | ||
git commit -m 'chore: Update root workspace acvm versions and lockfile' | ||
git push | ||
update-docs: | ||
name: Update docs | ||
needs: [release-please, update-acvm-workspace-package-versions] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v4 | ||
|
@@ -81,7 +81,7 @@ jobs: | |
- name: Install wasm-bindgen-cli | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected].86 | ||
tool: [email protected].100 | ||
|
||
- name: Install wasm-opt | ||
run: | | ||
|
@@ -113,7 +113,7 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
# We want this job to always run (even if the dependant jobs fail) as we need apply changes to the sticky comment. | ||
if: ${{ always() }} | ||
|
||
needs: | ||
- release-please | ||
- update-acvm-workspace-package-versions | ||
|
@@ -123,7 +123,7 @@ jobs: | |
# We treat any skipped or failing jobs as a failure for the workflow as a whole. | ||
FAIL: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }} | ||
|
||
steps: | ||
steps: | ||
- name: Add warning to sticky comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
|
@@ -175,7 +175,7 @@ jobs: | |
needs: [release-please] | ||
if: ${{ needs.release-please.outputs.tag-name }} | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Dispatch to publish-acvm | ||
uses: benc-uk/workflow-dispatch@v1 | ||
|
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 |
---|---|---|
|
@@ -52,7 +52,7 @@ resolver = "2" | |
version = "1.0.0-beta.3" | ||
# x-release-please-end | ||
authors = ["The Noir Team <[email protected]>"] | ||
edition = "2021" | ||
edition = "2024" | ||
rust-version = "1.85.0" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/noir-lang/noir/" | ||
|
@@ -116,9 +116,9 @@ lsp-types = "0.94.1" | |
tower = "0.4" | ||
|
||
# Wasm | ||
wasm-bindgen = { version = "=0.2.86", features = ["serde-serialize"] } | ||
wasm-bindgen-test = "0.3.36" | ||
wasm-bindgen-futures = "0.4.36" | ||
wasm-bindgen = { version = "=0.2.100", features = ["serde-serialize"] } | ||
wasm-bindgen-test = "0.3.50" | ||
wasm-bindgen-futures = "0.4.50" | ||
console_error_panic_hook = "0.1.7" | ||
gloo-utils = { version = "0.1", features = ["serde"] } | ||
js-sys = "0.3.62" | ||
|
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
Oops, something went wrong.