deb_rs/
lib.rs

1//! A library for handling debian files and other tasks related to the debian package
2//! repository. For extracting and retrieving data from `.deb` files please go to
3//! <file::Deb>.
4//!
5//! Using this library requires a few common linux packages installed. These are
6//! `tar`, `mkdir`, and `ar` (part of `binutils`). Please note there are some issues
7//! with `ar` on ubuntu older than `20.04`
8
9pub mod shared;
10
11// File extraction
12pub mod file;