alpm_db/desc/mod.rs
1//! Handling of [alpm-db-desc] file format versions.
2//!
3//! [alpm-db-desc]: https://alpm.archlinux.page/specifications/alpm-db-desc.5.html
4
5mod v1;
6pub use v1::DbDescFileV1;
7
8mod v2;
9pub use v2::DbDescFileV2;
10
11mod parser;
12pub use parser::{Section, SectionKeyword};
13
14mod schema;
15pub use schema::DbDescSchema;
16
17mod file;
18pub use file::DbDescFile;
19
20#[cfg(feature = "cli")]
21#[doc(hidden)]
22pub mod cli;
23
24#[cfg(feature = "cli")]
25#[doc(hidden)]
26pub mod commands;