Replies: 1 comment 2 replies
-
It's not exactly ZIP, but we have rom functions for deflating/inflating (you're looking for inflate to extract) using the tinfl implementation of the deflate algorithm. For an unsafe and hacky example you can look at our probe-rs flashing algorithms. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Off topic, but I don't know where elsewhere to ask, I'm looking to extract a file from a zip file while downloading (so streaming) with deflate algorithm, in no_std with alloc.
I couldn't find a way to achieve that.
I found a crate
zip_parser
which does the parsing, andzune-inflate
that does deflate but not streaming, andflate2
that doesn't seem to support no_std.Any options to get that done in no_std/alloc?
Beta Was this translation helpful? Give feedback.
All reactions