repomd 0.0.1

rpm repository metadata compatible with createrepo servings
Documentation
use super::*;
use std::marker::PhantomData;


mod filelists;
mod index;
mod other;
mod primary;
mod repofile;

pub use self::filelists::*;
pub use self::index::*;
pub use self::other::*;
pub use self::primary::*;
pub use self::repofile::*;


#[cfg(test)]
mod test {

}