-
Notifications
You must be signed in to change notification settings - Fork 2
Publish 0.1.0 to crates.io #14
Comments
@VictorKoenders thank you for creating this library. Do you have any plan to publish it to crates.io? |
No, work is being done on making bincode itself able to run on |
Excellent. It will be interesting to see how bincode will work without alloc (I need that for my project). |
I see https://github.com/bincode-org/bincode/releases/tag/v2.0.0-alpha.0 ! |
Are you already using bincode-core? we're considering archiving this repo in favor of bincode 2.0-alpha |
Yeah, I've been using bincode-core since Dec 2020 actually. The new derive bincode::Encode macros failed pretty hard for me (was eating up the doc comment above the struct...) so I'll likely need to do some things manually. |
Could you open up an issue on the bincode repo with the derive issue? I figured that'd break pretty hard for some systems. Implementing a manual Decode/Encode is pretty simple now, an example is in the std test: https://github.com/bincode-org/bincode/blob/trunk/tests/std.rs#L17-L42 |
Done, I've tried to isolate an enum and struct. It's not super clear what's going on without diving into the macros. (also, feel free to close this topic and archive this git repo) |
I'm trying to publish a crate dependent on this bincode-core.
The current api works well for my purposes (both x86_64 and arm-none-eabi).
The text was updated successfully, but these errors were encountered: