-
Notifications
You must be signed in to change notification settings - Fork 1
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(cli): add extractor witness gen #90
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
37f2885
feat(cli): add extractor witness gen
lonerapier df300d9
fix: select subarray param bug
lonerapier e874932
feat: add circuit config to `circuits.json`. Pending: http extraction
lonerapier cf0581f
feat: add http extractor support
lonerapier dc9bbc8
fix: tests
lonerapier 335a756
refactor files a bit
lonerapier e073ed8
fix tests again, arghhhhhhhgstgst
lonerapier 63da66f
Merge branch 'main' into feat/cli-improvs
Autoparallel 8a84f4f
simplify cli a bit more
lonerapier 97f53ff
more cli cleanup
lonerapier 0d5f010
add json proof docs
lonerapier 2c783cd
add http build docs
lonerapier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
</h1> | ||
|
||
<div align="center"> | ||
<a href="https://github.com/pluto/extractor/graphs/contributors"> | ||
<a href="https://github.com/pluto/parser-attestor/graphs/contributors"> | ||
<img src="https://img.shields.io/github/contributors/pluto/spark?style=flat-square&logo=github&logoColor=8b949e&labelColor=282f3b&color=32c955" alt="Contributors" /> | ||
</a> | ||
<a href="https://github.com/pluto/extractor/actions/workflows/test.yaml"> | ||
<a href="https://github.com/pluto/parser-attestor/actions/workflows/test.yaml"> | ||
<img src="https://img.shields.io/badge/tests-passing-32c955?style=flat-square&logo=github-actions&logoColor=8b949e&labelColor=282f3b" alt="Tests" /> | ||
</a> | ||
<a href="https://github.com/pluto/extractor/actions/workflows/lint.yaml"> | ||
<a href="https://github.com/pluto/parser-attestor/actions/workflows/lint.yaml"> | ||
<img src="https://img.shields.io/badge/lint-passing-32c955?style=flat-square&logo=github-actions&logoColor=8b949e&labelColor=282f3b" alt="Lint" /> | ||
</a> | ||
</div> | ||
|
@@ -120,10 +120,10 @@ From the root of this repository, run: | |
```sh | ||
cargo install --path . | ||
``` | ||
to install the `wpbuild` binary. | ||
to install the `pabuild` binary. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. DOUBLE THANKS |
||
You can see a help menu with the subcommands by: | ||
```sh | ||
wpbuild --help | ||
pabuild --help | ||
``` | ||
This is our local Rust command line application. | ||
Please see the [documentation](docs/pabuild.md) for how to use this alongside the other tools. | ||
|
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
THANKS!