oyvindln

Results 137 comments of oyvindln

Ok so it does work when running ```py -m pip install .```, just not with ```py -m build``` for some reason

That would make sense. - using ```py -m build -w``` works, ```python -m build -C--local=py-build-cmake.local.toml``` works on linux - on windows ends with a failure to find the file in...

Yeah the reason I was trying to pass in a config in the first place was specify the vcpkg toolchain location and tell vcpkg to use the static triplet instead...

Could you leave leave the black_box change out of this PR? I would like to evaluate that separately. I think adding a serde feature could be fine if there is...

Thanks for fixing the test part and splitting up the changes - will look over this and try to get it sorted when I have some time

Ah okay - just took me some days to get around to this - would have been fine with adding serde support if it was useful otherwise.

The zlib format itself doesn't have any limit on block size (other than on uncompressed blocks which are limited to a size of 2^16 bytes as they have to store...

I'm not entirely clear what you want added, do you want a serde feature that makes ```DecompressorOxide``` (and maybe the compressor equivialent and other structs) implement (de/)serialization traits?

StreamEnd happens in either backend if the deflate stream is well formed and the decompressor encounters the end of a block with the last block flag set. At least in...

I don't really know whether it would make performance worse or not, would have to test, miniz_oxide needs more performance work in any case. The behaviour could maybe also added...