3个版本

0.1.2 2021年1月12日
0.1.1 2021年1月7日
0.1.0 2021年1月6日

#948 in Unix API

Download history • Rust 包仓库 34/week @ 2024-03-31 • Rust 包仓库 1/week @ 2024-04-07 • Rust 包仓库 20/week @ 2024-06-23 • Rust 包仓库 54/week @ 2024-06-30 • Rust 包仓库

每月下载量74

MIT许可证

670KB
387

包含(debian包,350KB)example/assets/gnome_clocks.deb,(debian包,300KB)example/assets/exa.deb

deb-rs

用于提取和安装deb文件的库

使用要求

您可以通过将以下内容添加到您的cargo.toml文件中来安装

deb-rs = "0.1"

您需要ar命令(属于binutils)来解压缩文件存档。您还需要tar命令来提取其他存档。您需要Rust夜间版本来使用此包。

然后您可以在程序中使用它

use std::io::Error;
use deb_rs::file::Deb;

fn main() -> Result<(), Error> {
  let mut deb = Deb::new("./example/assets/gnome_clocks.deb");
  deb.extract()?;

  deb.version()?; // Returns the version of the structure of the debian package.
  // NOTE: extract() will fail with versions that are not 2.0 as their structure is different

   deb.retrieve_control()?; // Will return some general information about the contents of the package

  deb.install_tree()?; // Returns an array of files that must be moved for the file package to work

Ok(())
}

lib.rs:

用于处理Debian文件以及其他与Debian软件包存储库相关的任务的库。要提取和检索.deb文件中的数据,请参阅file::Deb

使用此库需要在您的系统上安装几个常用的Linux包。这些是tarmkdirar(属于binutils)。请注意,在小于20.04的Ubuntu上,ar存在一些问题。

依赖关系

~4.5MB
~40K SLoC