Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
b31f012
add rest of methods for barretenberg-wasm
kevaundray Oct 31, 2022
be18f8a
move aztec_backend to workspace crate
kevaundray Oct 31, 2022
5febf61
modify previous crate to use common crate from workspace
kevaundray Oct 31, 2022
71aa323
commit workspace
kevaundray Oct 31, 2022
bbfd409
remove old src directory
kevaundray Oct 31, 2022
b9247e6
move workspace directory contents, one level up and delete ws folder
kevaundray Oct 31, 2022
bb77e80
remove static_lib from top level workspace as it doesn't compile
kevaundray Oct 31, 2022
07bf2e0
set default acvm bn254 feature
kevaundray Oct 31, 2022
3588e9b
fix js-cli crate
kevaundray Oct 31, 2022
4cab797
add acvm_interop to wasm module -- note: this is a copy of the one in…
kevaundray Oct 31, 2022
ad57480
remove extraneous compilation features
kevaundray Oct 31, 2022
391602c
export acvm from common
kevaundray Nov 7, 2022
f6ecc31
use exported acvm from common
kevaundray Nov 7, 2022
109496e
matchh up barretenberg_static_lib to follow new structure of being in…
vezenovm Nov 10, 2022
b8a21fe
updated wasm and composer verify methods
vezenovm Nov 10, 2022
64079b9
add proving and verifying times for static lib
vezenovm Nov 10, 2022
40dab51
delete wasm file
vezenovm Nov 10, 2022
8f5dc53
add back new wasm file
vezenovm Nov 10, 2022
56590fd
add get_exact_circuit_size method
vezenovm Nov 14, 2022
97d0e8b
fix up missing import update and import
vezenovm Nov 16, 2022
fb42a54
remove extraneous public output removal
kevaundray Nov 21, 2022
aa54dd9
Merge pull request #19 from noir-lang/mv/fix-static-lib
kevaundray Nov 22, 2022
32aa075
add type annotation on cell
vezenovm Nov 22, 2022
92c97a8
fixed type annotation
vezenovm Nov 22, 2022
d8e63d7
move import
vezenovm Nov 22, 2022
1f17f48
cargo fmt
vezenovm Nov 22, 2022
484d1f3
Merge pull request #20 from noir-lang/mv/windows-fix
vezenovm Nov 22, 2022
a44d23c
updated wasm package to use circuit_size as well as updated get_exact…
vezenovm Dec 2, 2022
34ec45a
update bb wrapper ref
vezenovm Dec 2, 2022
bf723bd
updated bb ref
vezenovm Dec 7, 2022
830579d
updated wasm
vezenovm Dec 7, 2022
e5014a3
updatebb wrapper commit in staatic lib
vezenovm Dec 8, 2022
8ed466e
update bb_wrapper commit
vezenovm Dec 8, 2022
e1f206f
updated bb.wasm file
vezenovm Dec 8, 2022
a16ecda
Merge pull request #22 from noir-lang/mv/wasm-circuit-size
vezenovm Dec 9, 2022
6166ee2
update solidity verifier to match working one produced by TS wrapper,…
vezenovm Dec 9, 2022
42e15c9
remove bad import
vezenovm Dec 9, 2022
e3d4c79
Merge pull request #26 from noir-lang/mv/new-sol-verifier
vezenovm Dec 9, 2022
9b57300
Merge branch 'master' into kw/separate-systems
kevaundray Dec 13, 2022
b1ded22
Install dependencies in CI directly
kevaundray Dec 13, 2022
23d962b
remove 'static lifetime
kevaundray Dec 13, 2022
8a3f270
move merkle tree membership code to barretenberg_wasm
kevaundray Dec 20, 2022
1b828aa
fix import
kevaundray Dec 20, 2022
85fe4de
add tempfile as a dependency
kevaundray Dec 20, 2022
6d18382
ignore problematic crates temporarily
kevaundray Dec 20, 2022
6a0d2c4
remove old TURBOVERIFIER contract
kevaundray Dec 20, 2022
5569de4
fix : clippy
kevaundray Dec 20, 2022
9b4a400
import parent crate imports
kevaundray Dec 20, 2022
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
File renamed without changes.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
toolchain: ${{ matrix.toolchain }}
override: true

- name: Install denepencies
run: sudo ./barretenberg_dep.sh
- name: Install dependencies
# Install dependencies needed for the barretenberg static lib
run: sudo apt-get update -y && sudo apt-get install -y libomp-dev

- name: Run cargo check
uses: actions-rs/cargo@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
**/target
.DS_Store
node_modules
dest
Expand Down
Loading