alpm_repo_db/desc/
mod.rs

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