Chris Beck
Chris Beck
I have ended up publishing my fork as `aligned-array`, thanks again for providing a starting point: https://crates.io/crates/aligned-array
Bumping this issue In a large project, it can often be the source of strange problems when different crates are using different versions of the same dependency, and when we...
i ended up not forking this, since I realized I don't actually need this trait and the trait is very niche in the first place (`AsRef` and `AsMut` are usually...
@PraneshAnubhav this might be a dumb question -- In docs for `from_slice_with_scratch` it says: > Users should generally prefer to use from_slice or from_mut_slice over this function, as decoding may...
wow, it's been a long time... So unfortunately, my conclusion after studying over the past 1+ year is that rust serialization libraries based on `std::io` are unsuitable for porting to...
@daboross I picked up someone else's fork of your library to try to create the shims that you are talking about, almost 18 months ago. Here's what I had: https://github.com/garbageslam/msgpack-rust/tree/no_std_support...
Why would you expect anything different?
Hi -- Sorry I've been MIA on this library for a long time. I got married like a year and a half ago and then got super busy with other...
Hi, I've looked at Cereal in the past, but not too recently. IIRC it's like, you add the visitation function to your struct, so, ``` struct my_struct { int a;...
I agree, that would be great, and it is an oversight. One thing that concerns me is, if the `=` initializer is implicit, then you cannot do certain things: ```...