Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Sync from aztec-packages #4494

Merged
merged 32 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
50e001a
feat(avm): storage (https://github.com/AztecProtocol/aztec-packages/p…
AztecBot Mar 6, 2024
fe892a4
feat: Integrated native ACVM (https://github.com/AztecProtocol/aztec-…
AztecBot Mar 6, 2024
09f371f
feat: Integrated native ACVM (https://github.com/AztecProtocol/aztec-…
AztecBot Mar 6, 2024
6d284d4
fix(revert): "feat(avm): storage" (https://github.com/AztecProtocol/a…
AztecBot Mar 7, 2024
dd0bfed
fix(revert): "feat(avm): storage" (https://github.com/AztecProtocol/a…
AztecBot Mar 7, 2024
46737e6
chore: purging calldata hash (https://github.com/AztecProtocol/aztec-…
AztecBot Mar 7, 2024
94b9d5b
chore: purging calldata hash (https://github.com/AztecProtocol/aztec-…
AztecBot Mar 7, 2024
699f43d
fix: storage v2 (https://github.com/AztecProtocol/aztec-packages/pull…
AztecBot Mar 7, 2024
0bba5e8
fix: storage v2 (https://github.com/AztecProtocol/aztec-packages/pull…
AztecBot Mar 7, 2024
e5f34fb
chore: delete bootstrap scripts from `noir/noir-repo` (https://github…
AztecBot Mar 7, 2024
792518e
chore: delete bootstrap scripts from `noir/noir-repo` (https://github…
AztecBot Mar 7, 2024
0d6e7fd
chore(ci): Re-enable certain bb solidity ACIR tests (https://github.c…
AztecBot Mar 8, 2024
aecf7cf
chore(ci): Re-enable certain bb solidity ACIR tests (https://github.c…
AztecBot Mar 8, 2024
a340e64
feat: detect unknown note type ids in compute_note_hash (https://gith…
AztecBot Mar 8, 2024
8657c6b
feat: detect unknown note type ids in compute_note_hash (https://gith…
AztecBot Mar 8, 2024
61840d0
chore: run nargo fmt on each nargo project (https://github.com/AztecP…
AztecBot Mar 9, 2024
7807ce1
chore: run nargo fmt on each nargo project (https://github.com/AztecP…
AztecBot Mar 9, 2024
0c0c242
feat(avm): fix some Brillig problems (https://github.com/AztecProtoco…
AztecBot Mar 11, 2024
5c502ef
feat(avm): fix some Brillig problems (https://github.com/AztecProtoco…
AztecBot Mar 11, 2024
d020684
fix clippy
sirasistant Mar 11, 2024
da264ad
fix: ignore new test that has recursive aggregation
sirasistant Mar 11, 2024
f598182
chore(ci): fail on clippy warnings in noir (https://github.com/AztecP…
AztecBot Mar 11, 2024
82d6f52
chore(ci): fail on clippy warnings in noir (https://github.com/AztecP…
AztecBot Mar 11, 2024
57d02e7
Merge branch 'master' into aztec-packages
TomAFrench Mar 11, 2024
230709d
feat: Sync from noir (https://github.com/AztecProtocol/aztec-packages…
AztecBot Mar 12, 2024
b10086d
feat: Sync from noir (https://github.com/AztecProtocol/aztec-packages…
AztecBot Mar 12, 2024
07d5518
Merge branch 'master' into aztec-packages
sirasistant Mar 13, 2024
c556205
feat: Check initialization arguments in constructors (https://github.…
AztecBot Mar 13, 2024
e3f9c1a
feat: Check initialization arguments in constructors (https://github.…
AztecBot Mar 13, 2024
08cde49
Delete bootstrap.sh
TomAFrench Mar 13, 2024
7464bee
Delete bootstrap_cache.sh
TomAFrench Mar 13, 2024
1e97f6b
Merge branch 'master' into aztec-packages
TomAFrench Mar 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .aztec-sync-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7ff9b71d8d87fc93ae7dbd8ba63f5176b0cd17be
58e15edf7fd3d32267b0aed883fc84f6cee327c9
20 changes: 20 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ members = [
"tooling/nargo_toml",
"tooling/noirc_abi",
"tooling/noirc_abi_wasm",
"tooling/acvm_cli",
# ACVM
"acvm-repo/acir_field",
"acvm-repo/acir",
Expand All @@ -35,7 +36,7 @@ members = [
"acvm-repo/blackbox_solver",
"acvm-repo/bn254_blackbox_solver",
]
default-members = ["tooling/nargo_cli"]
default-members = ["tooling/nargo_cli", "tooling/acvm_cli"]
resolver = "2"

[workspace.package]
Expand Down Expand Up @@ -77,6 +78,7 @@ noir_lsp = { path = "tooling/lsp" }
noir_debugger = { path = "tooling/debugger" }
noirc_abi = { path = "tooling/noirc_abi" }
bb_abstraction_leaks = { path = "tooling/bb_abstraction_leaks" }
acvm_cli = { path = "tooling/acvm_cli" }

# LSP
async-lsp = { version = "0.1.0", default-features = false }
Expand Down
Loading
Loading