arch-pkg-text 0.10.0

Pure Rust library to parse Arch Linux packages' structured text formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]
pub mod desc;
pub mod misc;
pub mod parse;
pub mod srcinfo;
pub mod value;

pub use desc::{Query as QueryDesc, QueryMut as QueryDescMut};
pub use parse::ParsedDesc;
#[cfg(feature = "std")]
pub use parse::ParsedSrcinfo;
pub use srcinfo::{Query as QuerySrcinfo, QueryMut as QuerySrcinfoMut};