是否有用于Rust的gzip库?

dha*_*rdy 5 gzip zlib rust

我的搜索发现:

flate库的基础上,miniz。编辑:正如Mark Adler所指出的,这是一个zlib库,但不处理gzip标头。

活泼的 绑定,不能在现代Rust上编译。

dha*_*rdy 5

编辑:现在有flate2libflatedeflate


所以我结合了 dbaupp 和 Mark Adler 的建议,并创建了一个 gzip-decompressor:https : //github.com/alexcrichton/rust-compress/pull/30

然而,事实证明 Crichton 先生已经写了一个 gzip 层:https : //github.com/alexcrichton/flate2-rs

目前,存在这两种选择;最终成为标准的 Rust 解决方案还有待观察。