createrepo_rs 0.1.0

🦀 Pure Rust implementation of createrepo_c — generates RPM repository metadata (repodata). Drop-in replacement with identical output, zero FFI.
Documentation
1
2
3
4
5
6
7
8
9
//! XML dump modules for generating repodata XML files.
//!
//! This module provides pure Rust XML generation using quick-xml
//! to produce primary.xml, filelists.xml, other.xml, and repomd.xml.

pub mod primary;
pub mod filelists;
pub mod other;
pub mod repomd;