3个版本
0.1.2 | 2021年1月12日 |
---|---|
0.1.1 | 2021年1月7日 |
0.1.0 | 2021年1月6日 |
#948 in Unix API
每月下载量74
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包。这些是tar
、mkdir
和ar
(属于binutils
)。请注意,在小于20.04
的Ubuntu上,ar
存在一些问题。
依赖关系
~4.5MB
~40K SLoC