-
Notifications
You must be signed in to change notification settings - Fork 489
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
[Merged by Bors] - Remove lazy_static in favor of once_cell #3466
[Merged by Bors] - Remove lazy_static in favor of once_cell #3466
Conversation
d1e91b8
to
865409a
Compare
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
bors r+ |
`fluvio-package-index` was the only package using `lazy_static` - this small change favors `once_cell` instead. This way we have one less dependency and it will be easier to update once [`std::sync::LazyLock`](https://doc.rust-lang.org/std/sync/struct.LazyLock.html) is stabilized.
Build failed: |
Build failed on the crate version check - it detected a code change without a version change. Is it ok to ignore it and merge (since nothing meaningful changed), or is it preferable to bump a minor? |
All merges need to go thru bors (there is no exception). So in order to make bors happy, need to bump up minor version. Should create issue to skipped version check if changes are only related to tests |
bors r+ |
`fluvio-package-index` was the only package using `lazy_static` - this small change favors `once_cell` instead. This way we have one less dependency and it will be easier to update once [`std::sync::LazyLock`](https://doc.rust-lang.org/std/sync/struct.LazyLock.html) is stabilized.
Pull request successfully merged into master. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
fluvio-package-index
was the only package usinglazy_static
- this small change favorsonce_cell
instead.This way we have one less dependency and it will be easier to update once
std::sync::LazyLock
is stabilized.