6 releases (breaking)

0.6.0 May 25, 2022
0.5.0 Mar 20, 2021
0.4.0 Jan 2, 2020
0.3.0 Dec 15, 2019
0.1.0 Nov 19, 2019

#787 in Unix APIs

Download history 4919/week @ 2023-11-21 5458/week @ 2023-11-28 5448/week @ 2023-12-05 7080/week @ 2023-12-12 6455/week @ 2023-12-19 5300/week @ 2023-12-26 5551/week @ 2024-01-02 5207/week @ 2024-01-09 3860/week @ 2024-01-16 3272/week @ 2024-01-23 2744/week @ 2024-01-30 3006/week @ 2024-02-06 2577/week @ 2024-02-13 2581/week @ 2024-02-20 2613/week @ 2024-02-27 2347/week @ 2024-03-05

10,475 downloads per month
Used in remote-package

MIT license

120KB
562 lines

Contains (debian package, 83KB) tests/debs/xz-utils_5.2.4-1_amd64.deb, (debian package, 23KB) tests/debs/libgssglue1_0.3-4_amd64.deb

DebPkg

Actions Status Rust Docs Crates.io Link

A Rust library to parse binary debian packages.

This library provides utilties to parse binary debian packages abstracted over a reader. This API provides a streaming interface to avoid loading the entire debian package into RAM.

This library only parses binary debian packages. It does not attempt to write binary debian packages.

Supported Debian Package Versions

This package only supports version 2.0 of debian packages. Older versions are not currently supported.

Examples

Parsing a debian package

let file = std::fs::File::open("test.deb").unwrap();
let mut pkg = debpkg::DebPkg::parse(file).unwrap();
let mut control_tar = pkg.control().unwrap();
let control = debpkg::Control::extract(control_tar).unwrap();
println!("Package Name: {}", control.name());
println!("Package Version: {}", control.version());
let arch = control.get("Architecture").unwrap();
println!("Package Architecture: {}", arch);

let mut data = pkg.data().unwrap();
let dir = tempfile::TempDir::new().unwrap();
data.unpack(dir).unwrap();

Dependencies

~8–18MB
~230K SLoC