1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Crate for fetching detailed information from all available apt sources.
//!
//! The information retrieved from the provided `SourcesList` and accompanying iterator preserves
//! newlines and comments, so that these files can be modified and overwritten to preserve this data.
//!
//! Active source entries will be parsed into `SourceEntry`'s, which can be handled or serialized
//! back into text. Formatting of these lines are not preserved.

#[macro_use]
extern crate err_derive;

mod errors;
mod source_entry;
mod source_line;
mod sources_list;
pub mod source_deb822;

#[cfg(test)]
mod tests;

pub use self::errors::*;
pub use self::source_entry::*;
pub use self::source_line::*;
pub use self::sources_list::*;