-
Notifications
You must be signed in to change notification settings - Fork 58
Import bbq2 crate
#110
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
Merged
Import bbq2 crate
#110
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
CC @titaniumtraveler, cherry-picked from jamesmunns/bbq2@512c769
Condense types to be associated types on the handle
This adds: * Accessor functions on the handle to get producer/consumers, which is useful for preserving the `BbqHandle` generic when you're holding a handle * Adds a ton of docs * Adds real error types for grants * Adds CI This is going to be the 0.3 release very shortly.
* Switch to automatically detecting CAS support * Remove cas-atomics features entirely
Previously, we did not mark read/write grants as active. This was both unsound, and also did not work, because when releasing grants, we would notice the grants were not active and then ignore the commit/release. This was a bad transliteration of CAS to CS.
* Make some methods const * Add test, fmt
* Switch from std to alloc * Add back `std` feature flag, and fix small error in test configure gate * Fix no_std gating in lib.rs, and use `std` feature instead of `alloc` for docs.rs --------- Co-authored-by: Maximilien Cura <70043540+max-cura@users.noreply.github.com>
Merge remote-tracking branch 'bbq2/james/export' into james/bbq2/import
7c9ce82 to
170e21b
Compare
This was referenced Jan 4, 2026
Closed
Closed
Closed
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.
This is the first step of #107.
CC @Sympatron @ithinuel