-
Notifications
You must be signed in to change notification settings - Fork 2.2k
refactor: move Cargo.toml from root to core workspace #3456
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
Conversation
97ee4b6 to
a5161b3
Compare
2ab2a68 to
b4926e6
Compare
popzxc
left a comment
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.
LGTM
|
@popzxc , can you, please, merge when it's ok? It looks like I'm not authorized to merge here. |
|
@antonbaliasnikov looks like there is a merge conflict now 🥲 |
b4926e6 to
caccdf4
Compare
@popzxc , rebased my changes and fixed a bug in |
## What ❔ Move `Cargo.toml` from repository root to `core` workspace. <!-- What are the changes this PR brings about? --> <!-- Example: This PR adds a PR template to the repo. --> <!-- (For bigger PRs adding more context is appreciated) --> ## Why ❔ It is mandatory for proper separation of workspaces and setting up a `release-please` CI that requires all files of a component to be inside the component directory. ## CI failures Currently, the following tests are failing: * `protobuf_compatibility` - the workflow is using base version and will be fixed with the next PRs after merge to `main`. <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] Code has been formatted via `zkstack dev fmt` and `zkstack dev lint`.
What ❔
Move
Cargo.tomlfrom repository root tocoreworkspace.Why ❔
It is mandatory for proper separation of workspaces and setting up a
release-pleaseCI that requires all files of a component to be inside the component directory.CI failures
Currently, the following tests are failing:
protobuf_compatibility- the workflow is using base version and will be fixed with the next PRs after merge tomain.Checklist
zkstack dev fmtandzkstack dev lint.