Cydhra
Cydhra
> and we also need to make sure that it won't make delegation as a whole too confusing. Well, maybe that would be a use-case for #13. If we force...
The workaround of the previous comment does not work with the latest version. Therefore, here is my fixed implementation, for those who search one. Note, that I removed much of...
The Workaround provides you with a method, that takes a LogStream object (like your "output" variable). It then returns a WriteableByteChannel, that can either be transformed into an OutputStream or...
This is a duplicate of #52 (which also offers a solution)
I created a pull request to fix the issue. Since this repository seems stale, you may need to use [Jitpack](jitpack.io) to use the hotfixed version, instead of maven central, until...
rkyv looks good, and adding that with an optional dependency (because I am quite keen on keeping it zero-dependencies) might be an option. I'll look further into it, because it...
When adding a new serialization framework, it's worth thinking about the serialization-breaking change of reducing stack size by changing `Vec` into `Box` in immutable data structures.
No, using features is actually convenient for me, because I just disable all features, and let the downstream crate decide.
I mean, as long as you don't import serialized data from systems with opposite endianness, using only native endianness shouldn't create any issues, no?
Okay, I see where you are coming from, but exporting into pre-defined file formats using zero-copy serialization seems difficult. For example, let's pretend you write a Wavelet Matrix that looks...