8个版本 (3个稳定版)
2.1.0 | 2024年3月7日 |
---|---|
2.0.0 | 2022年2月16日 |
1.0.0 | 2021年4月23日 |
0.2.0 | 2020年11月29日 |
0.1.0 | 2019年3月9日 |
#274 在 解析器实现 中
16,480 每月下载次数
用于 13 个crate(10个直接使用)
36KB
667 行
PacmanConf
pacmanconf是pacman配置文件的简单解析器。
use pacmanconf::Config;
let config = Config::new().expect("failed to parse config");
let config = Config::options()
.root_dir("/chroot")
.pacman_conf("tests/pacman.conf")
.read()
.expect("failed to parse config");
for repo in &config.repos {
println!("{}", repo.name);
}