This repository was archived by the owner on Oct 31, 2023. It is now read-only.
Separates different compilation targets into their own crates#17
Merged
kevaundray merged 48 commits intomasterfrom Dec 20, 2022
Merged
Separates different compilation targets into their own crates#17kevaundray merged 48 commits intomasterfrom
kevaundray merged 48 commits intomasterfrom
Conversation
… the static_lib crate
… its own crate separate from wasm
fix static lib + verify proof w/ public inputs
add type annotation on cell
…_cricuit_size to use self in static_lib
5 tasks
wasm circuit size
… requires prepended pub inputs to proof
Update Solidity Verifier
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Separates the wasm-backend, js-backend and native backend into separate crates.
What used to be called:
wasm-baseis nowbarretenberg_js, to denote the fact that it is calling the js cli.sysis nowbarretenberg_static_libto denote the fact that it is calling the compiled static lib under the hoodAlthough the structure is now a workspace, one should call each individual crate as if there were no workspace, due to compilation features being additive. In the future, we could put these crates into separate repos, but this is not needed and is more difficult due to the fact that we have a
commoncrate that each crate references.