-
Notifications
You must be signed in to change notification settings - Fork 5
Split the merkle example into separate crates #230
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
Open
mpenciak
wants to merge
12
commits into
main
Choose a base branch
from
merkle_split
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
6ae5aca to
3f48f2f
Compare
937c9a9 to
f83762b
Compare
f83762b to
73a8c53
Compare
51b3de0 to
b409922
Compare
Add the ability for the lampe CLI to detect and handle Noir workspaces with multiple crates. When run on a directory containing multiple Nargo.toml subdirectories (but no root Nargo.toml), the CLI will extract each crate that has a lampe/ directory. Changes: - src/bin/main.rs: Add workspace detection (is_workspace_root, has_workspace_manifest, list_workspace_crates, select_workspace_crates) and run_workspace_root to iterate over workspace crates - src/project.rs: Add lampe_targets field and with_lampe_targets builder to track which packages should be treated as having lampe output, allowing workspace crates to reference each other during extraction
ce099a1 to
0f44048
Compare
0f44048 to
7198aeb
Compare
Restructure the Merkle testing example from a single crate into a workspace with three separate crates: - hasher: Core hashing interface - skyscraper: Skyscraper permutation implementation - merkle: Main merkle tree implementation using the above This demonstrates and tests the multi-crate workspace support added in the previous commit. Co-Authored-By: Matej Penciak <matej.penciak@gmail.com>
7198aeb to
db9e907
Compare
kustosz
reviewed
Jan 28, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #181.