1个不稳定发布

0.1.0 2023年1月7日

#463 in 压缩

MIT/Apache

6.5MB
157K SLoC

C 152K SLoC // 0.2% comments • Rust 包仓库 Automake 1.5K SLoC // 0.0% comments • Rust 包仓库 M4 1.5K SLoC // 0.3% comments • Rust 包仓库 Shell 1K SLoC // 0.2% comments • Rust 包仓库 AWK 769 SLoC // 0.1% comments • Rust 包仓库 Rust 555 SLoC // 0.0% comments • Rust 包仓库 RPM Specfile 292 SLoC // 0.0% comments • Rust 包仓库 Batch 262 SLoC // 0.0% comments • Rust 包仓库 C++ 40 SLoC • Rust 包仓库 JavaScript 22 SLoC • Rust 包仓库

包含(ZIP文件,1KB)tests/nested.zip,(ZIP文件,1KB)tests/simple.zip

akv

具有最小开销的libarchive安全绑定

示例

use akv::reader::ArchiveReader;

let io_reader = std::fs::File::open("tests/simple.zip")?;
let mut archive_reader = ArchiveReader::open_io(io_reader)?;

while let Some(entry) = archive_reader.next_entry()? {
    println!("Entry name: {}", entry.pathname_utf8()?);
    let entry_reader = entry.into_reader();
    println!(
        "Entry content: {}",
        std::io::read_to_string(entry_reader)?
    );
}
std::io::Result::Ok(())

依赖项

~6–9MB
~164K SLoC