-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tf/fix-docs2
* master: (202 commits) chore: remove usage of slices in pedersen hash (#6295) chore: remove dead function (#6308) feat: new formatter (#6300) feat: Sync from aztec-packages (#6301) fix: Allow array map on empty arrays (#6305) fix: Display function name and body when inlining recursion limit hit (#6291) feat(interpreter): Comptime derive generators (#6303) fix: enforce correctness of decompositions performed at compile time (#6278) feat: Warn about private types leaking in public functions and struct fields (#6296) chore(docs): refactoring guides and some other nits (#6175) fix: Do not warn on unused self in traits (#6298) fix: Reject invalid expression with in CLI parser (#6287) chore: regression test for #5462 (#6286) feat(improve): Remove scan through globals (#6282) feat: show LSP diagnostic related information (#6277) feat: trait inheritance (#6252) feat: optimize reading a workspace's files (#6281) fix: prevent compiler panic when popping from empty slices (#6274) feat(test): Include the PoseidonHasher in the fuzzing (#6280) feat: slightly improve "unexpected token" error message (#6279) ...
- Loading branch information
Showing
2,586 changed files
with
71,158 additions
and
144,207 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 @@ | ||
05cc59fd28b4d0ee89343106e538c0db0e70f52f | ||
ab0c80d7493e6bdbc58dcd517b248de6ddd6fd67 |
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,4 +1,9 @@ | ||
#!/usr/bin/env bash | ||
set -eu | ||
|
||
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
cd $(dirname "$0") | ||
|
||
CARGO_BINSTALL_CHECK=$(./command-check.sh cargo-binstall) | ||
if [ $CARGO_BINSTALL_CHECK != "true" ]; then | ||
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
set -eu | ||
|
||
command -v $1 >/dev/null 2>&1 && echo "true" || { echo >&2 "$1 is not installed" && echo "false"; } |
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,4 +1,4 @@ | ||
#!/bin/bash | ||
set -eu | ||
|
||
npx playwright install && npx playwright install-deps | ||
npx -y playwright@1.42 install --with-deps |
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 was deleted.
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
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,4 +1,4 @@ | ||
{ | ||
".": "0.33.0", | ||
"acvm-repo": "0.49.0" | ||
".": "0.35.0", | ||
"acvm-repo": "0.51.0" | ||
} |
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,9 +1,6 @@ | ||
docs | ||
scripts | ||
|
||
# aztec_macros is explicitly considered OOS for Noir audit | ||
aztec_macros | ||
|
||
# config files | ||
*.toml | ||
*.md | ||
|
Oops, something went wrong.