-
Notifications
You must be signed in to change notification settings - Fork 40
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
refactor: one zero package #625
Merged
Merged
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
eb593c7
mark: 0xaatif/fewer-crates
0xaatif 36d4798
refactor: remove ops
0xaatif 4361949
refactor: remove prover
0xaatif 67fcf23
refactor: remove worker
0xaatif 9e7ac1a
chore: update CI
0xaatif 19d770f
chore: update doc
0xaatif 7406442
fix: features are going to ruin my life
0xaatif 9e59fbb
chore: remove features from trace_decoder
0xaatif 5d4f457
refactor: remvoe verifier
0xaatif 60cd1cd
refactor: remove rpc
0xaatif 16f11f3
wip: move leader
0xaatif 6dfca34
refactor: remove leader
0xaatif adef43c
chore: ci
0xaatif 5a004f3
fix: clippy on zero_bin_common
0xaatif d218d36
wip: zero_bin_common -> zero
0xaatif 9257e34
run: sd zero_bin_common zero common/src/lib.rs compat/src/lib.rs evm_…
0xaatif 02f044d
chore: ci
0xaatif 1ba78f7
chore: docs
0xaatif 685a833
chore: move zero_bin/tools
0xaatif 0c1b225
wip
0xaatif f0036f4
chore: ci
0xaatif ee3c8bb
chore: more ci
aatifsyed ddeeeef
chore: more gitignore
0xaatif 82a0865
Merge remote-tracking branch 'origin/develop' into 0xaatif/fewer-crates
0xaatif 0805482
run: cargo fmt
0xaatif bd8c3b2
chore: fix exe paths
0xaatif 8a3f56b
review: markups
0xaatif 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
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
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,8 +1,28 @@ | ||
/**/target | ||
# Alphabetically, by-category | ||
|
||
# Build artifacts | ||
################# | ||
# Ours | ||
/circuits | ||
# Rust's | ||
0xaatif marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/target | ||
**/*.rs.bk | ||
*.iml | ||
.idea/ | ||
.vscode | ||
|
||
# Editors | ||
######### | ||
/.idea/ | ||
/.vscode | ||
/*.iml | ||
|
||
# Misc | ||
###### | ||
/**/*.ignoreme | ||
**/output.log | ||
/**/*.ipynb | ||
/**/*.log | ||
/**/*.out | ||
# Hardcoded in https://github.com/0xPolygonZero/zk_evm/blob/v0.6.0/zero_bin/common/src/debug_utils.rs#L9 | ||
/debug | ||
|
||
# Proof artifacts | ||
################# | ||
/proofs | ||
/**/*.zkproof |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
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.
nit: we may want to rename the lint to
crate: zero
as well?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.
I kept this the same for convenience (e.g looking at historical issues). Happy to change :)