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
//! Parsers of the various structured text formats.

mod partial;
pub use partial::*;

mod desc;
pub use desc::*;

#[cfg(feature = "std")]
mod srcinfo;
#[cfg(feature = "std")]
pub use srcinfo::*;