-
Notifications
You must be signed in to change notification settings - Fork 51
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
V0.4.0 #37
V0.4.0 #37
Conversation
This has been published as |
Will there be a way to use this library on top of static buffers? |
@Disasm you'll be able to to create a buffer at static scope, see these docs for details. You won't need to/be able to create one with a separate static |
Oh, missed that part, thanks! Are there any reasons to not use |
Unfortunately, you cannot provide trait bounds on const functions in stable rust today, which is problematic for my usage of |
Nice update! Could you expand on why the runtime check for already split is needed? It is not quite clear to me. |
@korken89 I'm not of any other way to do this without runtime checking that:
|
…ences... To the MaybeUninit to be live at the same time
I'm going to merge this, and start working on the v0.4.0 branch. I'll open up tracking issues for things that didn't make it in the 0.4.0 release, but could make it in 0.4.x releases. |
This is a pretty radical refactor.
On the plus side, this adds:
generic-array
I still need to:
BBQueue
instanceCC @jonas-schievink @korken89 @utaal @Disasm